Correct path separator on Windows
This commit is contained in:
parent
7d8883fd11
commit
f411741389
@ -148,6 +148,8 @@ def get_standard_dir(typ):
|
|||||||
"""
|
"""
|
||||||
# FIXME we could easily add some unittests for this
|
# FIXME we could easily add some unittests for this
|
||||||
path = QStandardPaths.writableLocation(typ)
|
path = QStandardPaths.writableLocation(typ)
|
||||||
|
# Qt seems to use '/' as path separator even on Windows...
|
||||||
|
path = path.replace('/', os.sep)
|
||||||
appname = QCoreApplication.instance().applicationName()
|
appname = QCoreApplication.instance().applicationName()
|
||||||
if (typ == QStandardPaths.ConfigLocation and
|
if (typ == QStandardPaths.ConfigLocation and
|
||||||
os.path.split(path)[-1] != appname):
|
os.path.split(path)[-1] != appname):
|
||||||
|
Loading…
Reference in New Issue
Block a user