We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f43c3e commit dea6218Copy full SHA for dea6218
1 file changed
lib/core/common.py
@@ -817,7 +817,7 @@ def dataToOutFile(filename, data):
817
retVal = None
818
819
if data:
820
- retVal = "%s%s%s" % (conf.filePath, os.sep, filePathToString(filename))
+ retVal = "%s%s%s" % (conf.filePath, os.sep, filePathToSafeString(filename))
821
822
with codecs.open(retVal, "wb", UNICODE_ENCODING) as f:
823
f.write(data)
0 commit comments