Skip to content

Commit 96d56fa

Browse files
committed
add success message
1 parent 9117e5d commit 96d56fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

csv2cmi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from xml.etree.ElementTree import Element, SubElement, Comment, ElementTree
1919

2020
__license__ = "MIT"
21-
__version__ = '2.0.1'
21+
__version__ = '2.0.2'
2222

2323
# define log output
2424
logging.basicConfig(format='%(levelname)s: %(message)s')
@@ -591,5 +591,6 @@ def processPlace(letter, correspondent):
591591

592592
try:
593593
tree.write(outFile, encoding="utf-8", xml_declaration=True, method="xml")
594+
print('CMI file written to', outFile)
594595
except PermissionError:
595596
logging.error('Could not save the file due to insufficient permission')

0 commit comments

Comments
 (0)