summaryrefslogtreecommitdiffstats
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-02-24 04:39:57 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-02-24 04:39:57 (GMT)
commitf106f8f29cf5eb90f39e0734d248a53b071f05c0 (patch)
treec83d17f63ebe86cfb3857302d77316738bec661f /Lib/tokenize.py
parent9dc3a36c849c15c227a8af218cfb215abe7b3c48 (diff)
downloadcpython-f106f8f29cf5eb90f39e0734d248a53b071f05c0.zip
cpython-f106f8f29cf5eb90f39e0734d248a53b071f05c0.tar.gz
cpython-f106f8f29cf5eb90f39e0734d248a53b071f05c0.tar.bz2
whitespace
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r--Lib/tokenize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index 9bbb512..5304de5 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -235,7 +235,7 @@ class Untokenizer:
raise ValueError("start ({},{}) precedes previous end ({},{})"
.format(row, col, self.prev_row, self.prev_col))
row_offset = row - self.prev_row
- if row_offset:
+ if row_offset:
self.tokens.append("\\\n" * row_offset)
self.prev_col = 0
col_offset = col - self.prev_col