mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-26 03:23:48 +03:00
minor bug fix
This commit is contained in:
parent
e8883de2c6
commit
d63339ca26
|
@ -549,7 +549,7 @@ def cmdLineParser():
|
||||||
try:
|
try:
|
||||||
args.append(getUnicode(arg, sys.getfilesystemencoding()))
|
args.append(getUnicode(arg, sys.getfilesystemencoding()))
|
||||||
except:
|
except:
|
||||||
args.append(getUnicode(arg), "utf8")
|
args.append(getUnicode(arg, "utf8"))
|
||||||
(args, _) = parser.parse_args(args)
|
(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\
|
if not args.direct and not args.url and not args.list and not args.googleDork and not args.configFile\
|
||||||
|
|
Loading…
Reference in New Issue
Block a user