diff --git a/spip2md/spip2md.py b/spip2md/spip2md.py index 35eaf11..5fca85f 100755 --- a/spip2md/spip2md.py +++ b/spip2md/spip2md.py @@ -2,6 +2,7 @@ import os import shutil import sys + # from datetime import date, datetime, time # Modules from config import CONFIG @@ -33,9 +34,7 @@ else: else: nbToExport = len(articles) -print( - f"--- Export of {nbToExport} SPIP articles to Markdown & YAML files ---\n" -) +print(f"--- Export of {nbToExport} SPIP articles to Markdown & YAML files ---\n") exported = 1 @@ -68,3 +67,4 @@ db.close() # Announce the end of the script print(f"\n--- Finished exporting {nbToExport} SPIP articles to md & YAML ---") +print(f"--- stored as ./{CONFIG['outputDir']}/*/index.md ---")