From: Terry Jan Reedy Date: Mon, 24 Feb 2014 04:39:57 +0000 (-0500) Subject: whitespace X-Git-Tag: v3.3.5rc2~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f106f8f29cf5eb90f39e0734d248a53b071f05c0;p=python whitespace --- diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 9bbb512d87..5304de5941 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