Skip to content

Commit 989271e

Browse files
committed
Update common.py
1 parent fdc8e66 commit 989271e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ def dataToOutFile(filename, data):
872872
retVal = os.path.join(conf.filePath, filePathToSafeString(filename))
873873

874874
try:
875-
with openFile(retVal, "wb") as f:
875+
with open(retVal, "wb") as f:
876876
f.write(data)
877877
except IOError, ex:
878878
errMsg = "something went wrong while trying to write "

0 commit comments

Comments
 (0)