From c19c057755aeb59181d27726ee79e1bdbbab055c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilhem=20Faur=C3=A9?= Date: Mon, 24 Apr 2023 16:22:27 +0200 Subject: [PATCH] more term info --- spip2md/spip2md.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ---")