mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
Minor update for Issue #54
This commit is contained in:
parent
3af1532700
commit
47b6e696d8
|
@ -696,7 +696,12 @@ def cmdLineParser():
|
||||||
if not found:
|
if not found:
|
||||||
parser.option_groups.remove(group)
|
parser.option_groups.remove(group)
|
||||||
|
|
||||||
|
try:
|
||||||
(args, _) = parser.parse_args(args)
|
(args, _) = parser.parse_args(args)
|
||||||
|
except SystemExit:
|
||||||
|
if '-h' in sys.argv:
|
||||||
|
print "\n[!] to see full list of options run with '-hh'"
|
||||||
|
raise
|
||||||
|
|
||||||
# Expand given mnemonic options (e.g. -z "ign,flu,bat")
|
# Expand given mnemonic options (e.g. -z "ign,flu,bat")
|
||||||
for i in xrange(len(sys.argv) - 1):
|
for i in xrange(len(sys.argv) - 1):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user