Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit c6b67ac

Browse files
authored
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.
1 parent 6e02ebc commit c6b67ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/ninja_syntax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, output, width=78):
2121
def newline(self):
2222
self.output.write('\n')
2323

24-
def comment(self, text, has_path=False):
24+
def comment(self, text):
2525
for line in textwrap.wrap(text, self.width - 2, break_long_words=False,
2626
break_on_hyphens=False):
2727
self.output.write('# ' + line + '\n')

0 commit comments

Comments
 (0)