mercurial/bundle2.py
changeset 33888 891118dcd279
parent 33886 13dc7f29531e
child 34101 5ede882c249c
--- a/mercurial/bundle2.py	Wed Aug 23 12:34:56 2017 -0700
+++ b/mercurial/bundle2.py	Wed Aug 23 12:35:03 2017 -0700
@@ -828,7 +828,11 @@
         while headerblock is not None:
             part = unbundlepart(self.ui, headerblock, self._fp)
             yield part
+            # Seek to the end of the part to force it's consumption so the next
+            # part can be read. But then seek back to the beginning so the
+            # code consuming this generator has a part that starts at 0.
             part.seek(0, 2)
+            part.seek(0)
             headerblock = self._readpartheader()
         indebug(self.ui, 'end of bundle2 stream')