Fix indent in pull request #1042.

This commit is contained in:
Alex Vallee 2015-11-11 22:48:39 -05:00
parent 8f658d6329
commit 8c18cf97ff

View 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')