From cbbf2729a935a3b27afb13dde27b1c731ed40844 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Tue, 21 Apr 2026 21:46:48 -0600 Subject: [PATCH] changed message and removed debug statement --- src/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 329eaba..5d06823 100644 --- a/src/main.py +++ b/src/main.py @@ -23,7 +23,6 @@ def main(): return f'Error: "{srcdir}" is not a directory or does not exist' filelist = list(srcdir.glob("*.md")) - print(f"{filelist}") # mk destdir if not exist if not destdir.is_dir(): @@ -31,7 +30,7 @@ def main(): # process filelist for infile in filelist: - print(f"processing '{infile}' to html") + print(f"processing '{infile}'...") # Read markdown once with infile.open(mode="r", encoding="utf-8") as f: