fixed download folder creation

This commit is contained in:
uh_wot 2020-02-22 15:52:36 +01:00
parent e9f010628e
commit 92fe450221
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def initSettings():
settings['downloadLocation'] = path.join(localpaths.getHomeFolder(), 'deemix Music')
saveSettings(settings)
if not path.isdir(settings['downloadLocation']):
mkdir(settings['pathSettings']['downloadLocation'])
mkdir(settings['downloadLocation'])
return settings
def getSettings():