File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.5.12.0 "
23
+ VERSION = "1.5.12.1 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -609,7 +609,7 @@ def _createFilesDir():
609
609
tempDir = tempfile .mkdtemp (prefix = "sqlmapfiles" )
610
610
warnMsg = "unable to create files directory "
611
611
warnMsg += "'%s' (%s). " % (conf .filePath , getUnicode (ex ))
612
- warnMsg += "Using temporary directory '%s' instead" % tempDir
612
+ warnMsg += "Using temporary directory '%s' instead" % getUnicode ( tempDir )
613
613
logger .warn (warnMsg )
614
614
615
615
conf .filePath = tempDir
@@ -631,7 +631,7 @@ def _createDumpDir():
631
631
tempDir = tempfile .mkdtemp (prefix = "sqlmapdump" )
632
632
warnMsg = "unable to create dump directory "
633
633
warnMsg += "'%s' (%s). " % (conf .dumpPath , getUnicode (ex ))
634
- warnMsg += "Using temporary directory '%s' instead" % tempDir
634
+ warnMsg += "Using temporary directory '%s' instead" % getUnicode ( tempDir )
635
635
logger .warn (warnMsg )
636
636
637
637
conf .dumpPath = tempDir
You can’t perform that action at this time.
0 commit comments