Skip to content

Commit

Permalink
fixed working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
SilenZcience committed Apr 23, 2024
1 parent c8a7801 commit 263d2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cat_win/src/cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@


coloramaInit(strip=False)
working_dir = os.path.dirname(os.path.realpath(__file__))
working_dir = os.path.abspath(os.path.join(os.path.realpath(__file__), os.pardir, os.pardir))

on_windows_os = platform.system() == 'Windows'
file_uri_prefix = 'file://' + '/' * on_windows_os
Expand Down

0 comments on commit 263d2e4

Please sign in to comment.