Skip to content

Commit

Permalink
print found version in ModuleUpdate.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Berserker66 committed Sep 21, 2024
1 parent eba8ac2 commit 561c7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ModuleUpdate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


if sys.version_info < (3, 10, 15):
raise RuntimeError("Incompatible Python Version. 3.10.15+ is supported.")
raise RuntimeError(f"Incompatible Python Version found: {sys.version_info}. 3.10.15+ is supported.")

# don't run update if environment is frozen/compiled or if not the parent process (skip in subprocess)
_skip_update = bool(getattr(sys, "frozen", False) or multiprocessing.parent_process())
Expand Down

0 comments on commit 561c7ee

Please sign in to comment.