minor fix for previous commit

This commit is contained in:
Miroslav Stampar 2011-01-30 07:44:47 +00:00
parent 1abf354630
commit 3060c369a5

View File

@ -550,6 +550,7 @@ def cmdLineParser():
args.append(getUnicode(arg, sys.stdin.encoding or sys.getfilesystemencoding())) args.append(getUnicode(arg, sys.stdin.encoding or sys.getfilesystemencoding()))
except: 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\ if not args.direct and not args.url and not args.list and not args.googleDork and not args.configFile\
and not args.requestFile and not args.updateAll and not args.smokeTest and not args.liveTest\ and not args.requestFile and not args.updateAll and not args.smokeTest and not args.liveTest\