mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Patch for an Issue #1147
This commit is contained in:
parent
bf1c08a8a6
commit
8b135e45bd
1 changed files with 1 additions and 1 deletions
|
|
@ -788,7 +788,7 @@ def cmdLineParser():
|
|||
prompt = False
|
||||
advancedHelp = True
|
||||
|
||||
for arg in sys.argv:
|
||||
for arg in (sys.argv if not IS_WIN else shlex.split(" ".join(sys.argv))):
|
||||
argv.append(getUnicode(arg, encoding=sys.getfilesystemencoding()))
|
||||
|
||||
checkDeprecatedOptions(argv)
|
||||
|
|
|
|||
Loading…
Reference in a new issue