diff --git a/img2htmltables.py b/img2htmltables.py
index 9e1d386..db4bbbb 100644
--- a/img2htmltables.py
+++ b/img2htmltables.py
@@ -19,9 +19,9 @@ def img2tables(img_file, width=None, height=None) -> str:
html = """
-
+
+
"""
- print(f'Converting "{img_file}"')
for row in bar.ChargingBar('Running').iter(range(size_y)):
html += ''
for col in range(size_x):
@@ -76,6 +76,7 @@ if __name__ == '__main__':
if args.size:
size = args.size
+ print(f'Starting conversion of "{args.image_path}"')
try:
html = img2tables(args.image_path, *size)
except KeyboardInterrupt: