Fix indent in pull request #1042.
authorAlex Vallee <avallee@google.com>
Thu, 12 Nov 2015 03:48:39 +0000 (22:48 -0500)
committerAlex Vallee <avallee@google.com>
Thu, 12 Nov 2015 03:48:39 +0000 (22:48 -0500)
misc/ninja_syntax.py

index 091e054..f285420 100644 (file)
@@ -24,7 +24,7 @@ class Writer(object):
     def comment(self, text, has_path=False):
         args = {}
         if has_path:
-          args['break_long_words'] = args['break_on_hyphens'] = False
+            args['break_long_words'] = args['break_on_hyphens'] = False
         for line in textwrap.wrap(text, self.width - 2, **args):
             self.output.write('# ' + line + '\n')