mirror of
https://github.com/reactos/ninja.git
synced 2024-11-26 21:20:23 +00:00
ninja_syntax.py: remove unused has_path argument
The usage of the parameter was removed a long time ago and was never cleaned up. The argument is not provided in the test.
This commit is contained in:
parent
6e02ebc4b5
commit
c6b67ac402
@ -21,7 +21,7 @@ class Writer(object):
|
||||
def newline(self):
|
||||
self.output.write('\n')
|
||||
|
||||
def comment(self, text, has_path=False):
|
||||
def comment(self, text):
|
||||
for line in textwrap.wrap(text, self.width - 2, break_long_words=False,
|
||||
break_on_hyphens=False):
|
||||
self.output.write('# ' + line + '\n')
|
||||
|
Loading…
Reference in New Issue
Block a user