mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +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:
|
||||
parser.option_groups.remove(group)
|
||||
|
||||
(args, _) = parser.parse_args(args)
|
||||
try:
|
||||
(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")
|
||||
for i in xrange(len(sys.argv) - 1):
|
||||
|
|
Loading…
Reference in New Issue
Block a user