1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

PEP8: fix E231: missing whitespace after ','

Signed-off-by: Joe Guo <joeg@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Joe Guo
2018-07-30 18:19:05 +12:00
committed by Douglas Bagnall
parent 35de42275b
commit 12d3fbe15c
78 changed files with 394 additions and 394 deletions

View File

@ -28,7 +28,7 @@ class Option(optparse.Option):
# This help formatter does text wrapping and preserves newlines
class PlainHelpFormatter(optparse.IndentedHelpFormatter):
def format_description(self,description=""):
def format_description(self, description=""):
desc_width = self.width - self.current_indent
indent = " " * self.current_indent
paragraphs = description.split('\n')
@ -128,7 +128,7 @@ class Command(object):
usage=self.synopsis,
description=self.full_description,
formatter=PlainHelpFormatter(),
prog=prog,epilog=epilog)
prog=prog, epilog=epilog)
parser.add_options(self.takes_options)
optiongroups = {}
for name, optiongroup in self.takes_optiongroups.items():