mercurial/bundle2.py
changeset 31863 cd7aaf344d83
parent 31862 9bd9e9cb3f69
child 31889 a02e773008f5
--- a/mercurial/bundle2.py	Sun Apr 09 18:12:54 2017 +0200
+++ b/mercurial/bundle2.py	Sun Apr 09 19:08:24 2017 +0200
@@ -660,11 +660,6 @@
                     raise
         return None
 
-    def close(self):
-        """close underlying file"""
-        if util.safehasattr(self._fp, 'close'):
-            return self._fp.close()
-
 def getunbundler(ui, fp, magicstring=None):
     """return a valid unbundler object for a given magicstring"""
     if magicstring is None:
@@ -817,6 +812,11 @@
         self.params # load params
         return self._compressed
 
+    def close(self):
+        """close underlying file"""
+        if util.safehasattr(self._fp, 'close'):
+            return self._fp.close()
+
 formatmap = {'20': unbundle20}
 
 b2streamparamsmap = {}