From 461a8587ad2ebf7f54497c6a29d9d08054918aa7 Mon Sep 17 00:00:00 2001 From: scuti Date: Sat, 12 Oct 2024 10:07:24 -0700 Subject: [PATCH] minor fix, function 'main' assigns to var 'success' --- scripts/allmaps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/allmaps.py b/scripts/allmaps.py index b820402..b184cd1 100644 --- a/scripts/allmaps.py +++ b/scripts/allmaps.py @@ -58,7 +58,7 @@ def main(): if __name__ == "__main__": success = False try: - main() + success = main() except FileNotFoundError: traceback.print_exc() print("\n\t The script probably didn't find the page templates needed to generate a page. You can copy minimal working examples from the repository at templates/.")