Patch for an Issue #892

This commit is contained in:
Miroslav Stampar 2014-11-02 11:01:46 +01:00
parent a4d058d70c
commit 1ef2c4006d

View File

@ -857,8 +857,13 @@ def dataToOutFile(filename, data):
if data: if data:
retVal = os.path.join(conf.filePath, filePathToSafeString(filename)) retVal = os.path.join(conf.filePath, filePathToSafeString(filename))
with codecs.open(retVal, "wb", UNICODE_ENCODING) as f: try:
f.write(data) with codecs.open(retVal, "wb", UNICODE_ENCODING) as f:
f.write(data)
except IOError, ex:
errMsg = "something went wrong while trying to write "
errMsg += "to the output file ('%s')" % ex
raise SqlmapGenericException(errMsg)
return retVal return retVal