mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
backslashes should not be needed, since the we're using expanduser in conjunction with specifying a dir ('deluge') after it
This commit is contained in:
parent
24fbfccfb0
commit
a90069b5d0
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ def windows_check():
|
|||
return False
|
||||
|
||||
if windows_check():
|
||||
CONFIG_DIR = os.path.join(os.path.expanduser("~\\"), 'deluge')
|
||||
CONFIG_DIR = os.path.join(os.path.expanduser("~"), 'deluge')
|
||||
if not os.path.exists(CONFIG_DIR):
|
||||
os.mkdir(CONFIG_DIR)
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue