blob: b70da5f4e403259da86f21a0aaa26b25e785dff0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/wisp.py
+++ b/wisp.py
@@ -101,7 +101,7 @@
line = (i)*" " + line[i:]
# \_ escapes the underscore at the beginning of a line, so you
# can use identifiers which only consist of underscores.
- elif line.startswith("\_"):
+ elif line.startswith("\\_"):
line = "_" + line[2:]
#: prefix to go around the outer bracket: '(, ,( or `(
|