changed message and removed debug statement

This commit is contained in:
2026-04-21 21:46:48 -06:00
parent 28c8269f5c
commit cbbf2729a9
+1 -2
View File
@@ -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: