mercurial/localrepo.py
changeset 46711 a41565bef69f
parent 46705 fd55a9eb1507
child 46713 bc2519513ae0
--- a/mercurial/localrepo.py	Fri Feb 19 11:07:10 2021 +0100
+++ b/mercurial/localrepo.py	Thu Feb 18 17:36:52 2021 +0100
@@ -316,7 +316,13 @@
         )
 
     def getbundle(
-        self, source, heads=None, common=None, bundlecaps=None, **kwargs
+        self,
+        source,
+        heads=None,
+        common=None,
+        bundlecaps=None,
+        remote_sidedata=None,
+        **kwargs
     ):
         chunks = exchange.getbundlechunks(
             self._repo,
@@ -324,6 +330,7 @@
             heads=heads,
             common=common,
             bundlecaps=bundlecaps,
+            remote_sidedata=remote_sidedata,
             **kwargs
         )[1]
         cb = util.chunkbuffer(chunks)