summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/ninja.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ninja.py b/misc/ninja.py
index e1abbf7..38b13c9 100644
--- a/misc/ninja.py
+++ b/misc/ninja.py
@@ -58,7 +58,7 @@ class Writer(object):
while len(text) > self.width:
space = text.rfind(' ', 0, self.width - 4)
assert space != -1 # TODO: handle if no space found.
- self.output.write(text[0:space] + ' \\\n')
+ self.output.write(text[0:space] + ' $\n')
text = ' ' * (indent+2) + text[space:].lstrip()
self.output.write(text + '\n')