mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #1320
This commit is contained in:
parent
301aca57e6
commit
bcb25823e6
7 changed files with 11 additions and 10 deletions
|
|
@ -862,7 +862,7 @@ def cmdLineParser():
|
|||
for arg in shlex.split(command):
|
||||
argv.append(getUnicode(arg, encoding=sys.stdin.encoding))
|
||||
except ValueError, ex:
|
||||
raise SqlmapSyntaxException, "something went wrong during command line parsing ('%s')" % ex
|
||||
raise SqlmapSyntaxException, "something went wrong during command line parsing ('%s')" % getUnicode(ex)
|
||||
|
||||
# Hide non-basic options in basic help case
|
||||
for i in xrange(len(argv)):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue