We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdc8e66 commit 989271eCopy full SHA for 989271e
lib/core/common.py
@@ -872,7 +872,7 @@ def dataToOutFile(filename, data):
872
retVal = os.path.join(conf.filePath, filePathToSafeString(filename))
873
874
try:
875
- with openFile(retVal, "wb") as f:
+ with open(retVal, "wb") as f:
876
f.write(data)
877
except IOError, ex:
878
errMsg = "something went wrong while trying to write "
0 commit comments