lint: Fix E127 pep8 violations.

Fix pep8: E127 continuation line over-indented for visual indent
style issue.
This commit is contained in:
Rafid Aslam 2016-11-30 20:17:35 +07:00 committed by Tim Abbott
parent bc9bb4287d
commit fad4fbc733
5 changed files with 28 additions and 28 deletions

View file

@ -80,13 +80,13 @@ def main(argv=None):
group = optparse.OptionGroup(parser, 'Stream parameters')
group.add_option('-s', '--stream',
dest='stream',
action='store',
help='Allows the user to specify a stream for the message.')
dest='stream',
action='store',
help='Allows the user to specify a stream for the message.')
group.add_option('-S', '--subject',
dest='subject',
action='store',
help='Allows the user to specify a subject for the message.')
dest='subject',
action='store',
help='Allows the user to specify a subject for the message.')
parser.add_option_group(group)