PEP8: fix E226: missing whitespace around arithmetic operator
[bbaumbach/samba-autobuild/.git] / python / samba / netcmd / __init__.py
index 7704cb80f5d259fa99d0d6578728ceb83b3045a3..556afd71e400c16a7b272be7d99b437673ac76e8 100644 (file)
@@ -30,7 +30,7 @@ class Option(optparse.Option):
 class PlainHelpFormatter(optparse.IndentedHelpFormatter):
     def format_description(self,description=""):
         desc_width = self.width - self.current_indent
-        indent = " "*self.current_indent
+        indent = " " * self.current_indent
         paragraphs = description.split('\n')
         wrapped_paragraphs = [
             textwrap.fill(p,
@@ -137,7 +137,7 @@ class Command(object):
         return parser, optiongroups
 
     def message(self, text):
-        self.outf.write(text+"\n")
+        self.outf.write(text + "\n")
 
     def _run(self, *argv):
         parser, optiongroups = self._create_parser(argv[0])