From 8c18cf97ff0ff2a6347865443052913c598d7ee6 Mon Sep 17 00:00:00 2001 From: Alex Vallee Date: Wed, 11 Nov 2015 22:48:39 -0500 Subject: [PATCH] Fix indent in pull request #1042. --- misc/ninja_syntax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') -- 2.7.4