mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2026-02-13 00:37:33 +01:00
com.py: use config_path instead of data_path. Paths.py: some strings weren't appended as unicode
This commit is contained in:
@@ -29,7 +29,7 @@ def config_path():
|
||||
if directory != None: path = os.path.join(directory, "config")
|
||||
elif directory == None: path = app_path(u"config")
|
||||
elif mode == "installed":
|
||||
path = data_path("config")
|
||||
path = data_path(u"config")
|
||||
if not os.path.exists(path):
|
||||
log.debug("%s path does not exist, creating..." % (path,))
|
||||
os.mkdir(path)
|
||||
@@ -42,7 +42,7 @@ def logs_path():
|
||||
if directory != None: path = os.path.join(directory, "logs")
|
||||
elif directory == None: path = app_path(u"logs")
|
||||
elif mode == "installed":
|
||||
path = data_path("logs")
|
||||
path = data_path(u"logs")
|
||||
if not os.path.exists(path):
|
||||
log.debug("%s path does not exist, creating..." % (path,))
|
||||
os.mkdir(path)
|
||||
|
||||
Reference in New Issue
Block a user