mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 00:42:23 +01:00
minor bug fix
This commit is contained in:
parent
e8883de2c6
commit
d63339ca26
1 changed files with 1 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ def cmdLineParser():
|
|||
try:
|
||||
args.append(getUnicode(arg, sys.getfilesystemencoding()))
|
||||
except:
|
||||
args.append(getUnicode(arg), "utf8")
|
||||
args.append(getUnicode(arg, "utf8"))
|
||||
(args, _) = parser.parse_args(args)
|
||||
|
||||
if not args.direct and not args.url and not args.list and not args.googleDork and not args.configFile\
|
||||
|
|
|
|||
Loading…
Reference in a new issue