summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/traceback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c
index bea0b19..1ab880a 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -212,7 +212,7 @@ tb_displayline(f, filename, lineno, name)
}
if (i == lineno) {
char *p = linebuf;
- while (*p == ' ' || *p == '\t')
+ while (*p == ' ' || *p == '\t' || *p == '\014')
p++;
writestring(" ", f);
writestring(p, f);