mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Minor patch (unicode related)
This commit is contained in:
parent
35c8e016a8
commit
e6de92ce88
4 changed files with 7 additions and 6 deletions
|
|
@ -857,7 +857,7 @@ def dataToDumpFile(dumpFile, data):
|
|||
dumpFile.write(data)
|
||||
dumpFile.flush()
|
||||
except IOError, ex:
|
||||
if "No space left" in str(ex):
|
||||
if "No space left" in getUnicode(ex):
|
||||
errMsg = "no space left on output device"
|
||||
logger.error(errMsg)
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue