From ede8d10b1e45f5304b43a9936212d0a4e91f3da7 Mon Sep 17 00:00:00 2001 From: Damon Lynch Date: Thu, 25 Apr 2024 16:22:14 +1200 Subject: [PATCH] __about__ build fix in argumentsparse.py --- CHANGES.md | 5 +++++ raphodo/__about__.py | 2 +- raphodo/argumentsparse.py | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 818963e3..a5a0da6d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Changelog for Rapid Photo Downloader ==================================== +0.9.37a3 (2024-04-25) +--------------------- + + - Additional build fix while generating man page. + 0.9.37a2 (2024-04-25) --------------------- diff --git a/raphodo/__about__.py b/raphodo/__about__.py index 04effd87..80a9c1bb 100644 --- a/raphodo/__about__.py +++ b/raphodo/__about__.py @@ -19,7 +19,7 @@ ) __uri__ = "https://damonlynch.net/rapid" -__version__ = "0.9.37a2" +__version__ = "0.9.37a3" __author__ = "Damon Lynch" __email__ = "damonlynch@gmail.com" diff --git a/raphodo/argumentsparse.py b/raphodo/argumentsparse.py index 1c51ff1c..6003a9cb 100644 --- a/raphodo/argumentsparse.py +++ b/raphodo/argumentsparse.py @@ -28,8 +28,8 @@ def no_translation_performed(s: str) -> str: here = Path(__file__).parent with open(here / "__about__.py") as f: - about = {} - exec(f.read(), about) + __about__ = {} + exec(f.read(), __about__) with open(here / "metadata/fileextensions.py") as f: file_extensions = {} exec(f.read(), file_extensions)