summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake8/processor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake8/processor.py b/flake8/processor.py
index f2f5b00..30c0e96 100644
--- a/flake8/processor.py
+++ b/flake8/processor.py
@@ -163,8 +163,8 @@ class FileProcessor(object):
(previous_text not in '{[(' and
text not in '}])')):
text = ' ' + text
- elif previous_column != start_column:
- text = line[previous_column:start_column] + text
+ elif previous_column != start_column:
+ text = line[previous_column:start_column] + text
logical.append(text)
length += len(text)
mapping.append((length, end))