re-order verbose and warning options
This commit is contained in:
@@ -249,18 +249,18 @@ def build_parser():
|
||||
action="store_const", const=logging.ERROR,
|
||||
help="Activate quiet mode",
|
||||
)
|
||||
output.add_argument(
|
||||
"-w", "--warning",
|
||||
dest="loglevel",
|
||||
action="store_const", const=logging.WARNING,
|
||||
help="Print only warnings and errors",
|
||||
)
|
||||
output.add_argument(
|
||||
"-v", "--verbose",
|
||||
dest="loglevel",
|
||||
action="store_const", const=logging.DEBUG,
|
||||
help="Print various debugging information",
|
||||
)
|
||||
output.add_argument(
|
||||
"-w", "--warning",
|
||||
dest="loglevel",
|
||||
action="store_const", const=logging.WARNING,
|
||||
help="Print warnings",
|
||||
)
|
||||
output.add_argument(
|
||||
"-g", "--get-urls",
|
||||
dest="list_urls", action="count",
|
||||
|
||||
Reference in New Issue
Block a user