Use two spaces before inline comment (PEP8) (fix flake8 error)

This commit is contained in:
Jack Riches 2017-04-03 23:06:36 +01:00
parent 2560f02c36
commit d5c8d3067e

View File

@ -198,7 +198,7 @@ base_parser.add_argument('-c', '--config',
'(use "-" for stdout)') '(use "-" for stdout)')
base_parser.add_argument('-l', '--log-level', base_parser.add_argument('-l', '--log-level',
type=str.upper, # convert to uppercase for comparison to choices type=str.upper, # convert to uppercase for comparison to choices
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'], choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
default='INFO', default='INFO',
help='Log level') help='Log level')