Skip to content

Commit

Permalink
fix windows startup path generation
Browse files Browse the repository at this point in the history
  • Loading branch information
wbbb committed Jun 24, 2024
1 parent 2335a6b commit 78e1291
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/__utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

if IS_FROZEN:
# running as a bundled executable
START_COMMAND = Path(sys.executable).resolve().as_posix()
START_COMMAND = Path(sys.executable).resolve().__str__()
else:
# running as a Python script
if "CONDA_DEFAULT_ENV" in os.environ:
Expand Down

0 comments on commit 78e1291

Please sign in to comment.