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