filter-repo: prevent pyparsing from expanding tabs to spaces

We are not parsing simple text; we're parsing data and need to be able to
print that data unmunged.

Signed-off-by: Elijah Newren <newren@gmail.com>
This commit is contained in:
Elijah Newren 2009-02-03 17:39:27 -07:00
parent de7aeb64bc
commit ff95c771d8

View File

@ -169,6 +169,7 @@ class FastExportParser(object):
# Tying it all together
cmd = blob | reset
self.stream = ZeroOrMore(cmd)
self.stream.parseWithTabs()
def parse(self, string):
try: