Have all callers of input.readline() be done through _advance_nextline()

This commit is contained in:
Elijah Newren 2009-03-21 11:51:06 -06:00
parent 992cfa11eb
commit 0170a9100a

View File

@ -462,7 +462,7 @@ class FastExportFilter(object):
current_stream_number += 1
# Run over the input and do the filtering
self.nextline = self.input.readline()
self._advance_nextline()
while self.nextline:
if self.nextline.startswith('blob'):
self._parse_blob()