# Make tabnanny happy.

This commit is contained in:
Guido van Rossum 1998-06-29 17:58:43 +00:00
parent 3ad9dd559a
commit 716b78474c
1 changed files with 3 additions and 3 deletions

View File

@ -131,9 +131,9 @@ class MultiFile:
if self.level > 0:
raise Error, 'bad MultiFile.push() call'
self.stack.insert(0, sep)
if self.seekable:
self.posstack.insert(0, self.start)
self.start = self.fp.tell()
if self.seekable:
self.posstack.insert(0, self.start)
self.start = self.fp.tell()
#
def pop(self):
if self.stack == []: