Fix indentation causing incorrect logical lines

This commit is contained in:
Ian Cordasco 2016-03-14 20:23:20 -05:00
parent daf5c4d80d
commit 447a6d4fcc

View file

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