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:
@ -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():
|
||||
|
Reference in New Issue
Block a user