Skip to content

Commit

Permalink
main: Fix another instance of wrong path... (#1307)
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j authored Nov 23, 2024
1 parent 773999e commit 33d4e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tauon/t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@
user_directory = str(Path(GLib.get_user_data_dir()) / "TauonMusicBox")
config_directory = Path(GLib.get_user_data_dir()) / "TauonMusicBox"

if not user_directory.is_dir():
if not Path(user_directory).is_dir():
os.makedirs(user_directory)

if not config_directory.is_dir():
Expand Down

0 comments on commit 33d4e5a

Please sign in to comment.