Commit 51e199b1 authored by Fred Drake's avatar Fred Drake

fix whitespace

parent 754556b0
...@@ -125,16 +125,16 @@ def main(args=None): ...@@ -125,16 +125,16 @@ def main(args=None):
parser = optparse.OptionParser(__doc__) parser = optparse.OptionParser(__doc__)
parser.add_option( parser.add_option(
'-m', '--output-metrics', action="store_true", '-m', '--output-metrics', action="store_true",
help ="Output metrics." help="Output metrics.",
) )
parser.add_option( parser.add_option(
'-s', '--status-path', '-s', '--status-path',
help ="Path to status file, needed to get rate metrics" help="Path to status file, needed to get rate metrics",
) )
parser.add_option( parser.add_option(
'-u', '--time-units', type='choice', default='minutes', '-u', '--time-units', type='choice', default='minutes',
choices=['seconds', 'minutes', 'hours', 'days'], choices=['seconds', 'minutes', 'hours', 'days'],
help ="Time unit for rate metrics" help="Time unit for rate metrics",
) )
(options, args) = parser.parse_args(args) (options, args) = parser.parse_args(args)
[addr] = args [addr] = args
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment