]> granicus.if.org Git - python/commitdiff
# Make tabnanny happy.
authorGuido van Rossum <guido@python.org>
Mon, 29 Jun 1998 17:58:43 +0000 (17:58 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 29 Jun 1998 17:58:43 +0000 (17:58 +0000)
Lib/multifile.py

index ff2a59d160386ecec5b4cc921ec477fe51cc5b61..ce84087a5eea5cea7845fd96071ed1c1f122cecb 100644 (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 == []: