Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7aeb67 commit 5b0d741Copy full SHA for 5b0d741
1 file changed
lib/parse/cmdline.py
@@ -860,6 +860,9 @@ def _(self, *args):
860
861
try:
862
(args, _) = parser.parse_args(argv)
863
+ except UnicodeEncodeError, ex:
864
+ print "\n[!] %s" % ex.object.encode("unicode-escape")
865
+ raise SystemExit
866
except SystemExit:
867
if "-h" in argv and not advancedHelp:
868
print "\n[!] to see full list of options run with '-hh'"
0 commit comments