You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_option("-i", '--interval', dest='interval', default=None, help='the default time interval to sleep between runs')
24
-
parser.add_option('-l', '--log-level', dest='log_level', default=LOG_LEVELS['info'], help='log level. Valid values are "debug", "info", "warning", "error", "critical", in decreasing order of verbosity. Defaults to "info" if parameter not specified.')
18
+
parser.add_option('-l', '--log-level', dest='log_level', default='info', help='log level. Valid values are "debug", "info", "warning", "error", "critical", in decreasing order of verbosity. Defaults to "info" if parameter not specified.')
25
19
(options,args) =parser.parse_args()
26
20
27
21
iflen(args) !=1:
28
22
parser.print_help()
29
23
parser.error("Argument must be a comma seperated list of queues")
0 commit comments