From baf990e65c62f42e45fe25ac385db9536d3f1788 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 27 Apr 2025 16:49:38 -0400 Subject: Update stdlib to use `print` instead of `printf` in all cases. This means bringing in fpconv to do float-to-string conversion and a few updates to integer and number methods for string formatting. --- scripts/mandoc_gen.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/mandoc_gen.py b/scripts/mandoc_gen.py index 66dedd1f..8342e253 100755 --- a/scripts/mandoc_gen.py +++ b/scripts/mandoc_gen.py @@ -118,6 +118,7 @@ if __name__ == "__main__": if len(sys.argv) > 1: all_files = "" for filename in sys.argv[1:]: + print(f"Making mandoc for {filename}") with open(filename, "r") as f: all_files += f.read() convert_to_markdown(all_files) -- cgit v1.2.3