Skip to content

Commit

Permalink
Merge pull request #207 from damonlynch/fix-raphodo-import-errors-1
Browse files Browse the repository at this point in the history
__about__ build fix in argumentsparse.py
  • Loading branch information
damonlynch authored Apr 25, 2024
2 parents 4e1080c + ede8d10 commit 4ad72dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion raphodo/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
)
__uri__ = "https://damonlynch.net/rapid"

__version__ = "0.9.37a2"
__version__ = "0.9.37a3"

__author__ = "Damon Lynch"
__email__ = "damonlynch@gmail.com"
Expand Down
4 changes: 2 additions & 2 deletions raphodo/argumentsparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4ad72dd

Please sign in to comment.