diff options
author | Alex Vallee <avallee@google.com> | 2015-11-12 03:48:39 (GMT) |
---|---|---|
committer | Alex Vallee <avallee@google.com> | 2015-11-12 03:48:39 (GMT) |
commit | 8c18cf97ff0ff2a6347865443052913c598d7ee6 (patch) | |
tree | 658495878d96498a105b36e87b0026caa86a4ce0 /misc | |
parent | 8f658d63298c5fae29616b8d922d03bb7ea67c0c (diff) | |
download | Ninja-8c18cf97ff0ff2a6347865443052913c598d7ee6.zip Ninja-8c18cf97ff0ff2a6347865443052913c598d7ee6.tar.gz Ninja-8c18cf97ff0ff2a6347865443052913c598d7ee6.tar.bz2 |
Fix indent in pull request #1042.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ninja_syntax.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ninja_syntax.py b/misc/ninja_syntax.py index 091e054..f285420 100644 --- a/misc/ninja_syntax.py +++ b/misc/ninja_syntax.py @@ -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') |