whitespace

This commit is contained in:
Terry Jan Reedy 2014-02-23 23:39:57 -05:00
parent 9dc3a36c84
commit f106f8f29c
1 changed files with 1 additions and 1 deletions

View File

@ -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