diff -r 4cd214c9948d -r a41565bef69f mercurial/localrepo.py --- 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)