Issue #77: fix - replace tabs with space.

This commit is contained in:
Steven Black 2016-02-15 12:36:38 -05:00
parent d69aa1add3
commit a4b254d1cf

View File

@ -251,6 +251,8 @@ def removeDupsAndExcl(mergeFile):
write = 'true'
# Explicit encoding
line = line.decode("UTF-8")
# replace tabs with space
line = line.replace('\t+', ' ')
# Testing the first character doesn't require startswith
if line[0] == '#' or re.match(r'^\s*$', line[0]):
# Cross-python write