##// END OF EJS Templates
exchange: propagate arguments to the _getbundleextrapart function...
Pierre-Yves David -
r21257:0055b5b3 default
parent child Browse files
Show More
@@ -699,8 +699,8 b' def getbundle(repo, source, heads=None, '
699 bundler = bundle2.bundle20(repo.ui, b2caps)
699 bundler = bundle2.bundle20(repo.ui, b2caps)
700 part = bundle2.bundlepart('b2x:changegroup', data=cg.getchunks())
700 part = bundle2.bundlepart('b2x:changegroup', data=cg.getchunks())
701 bundler.addpart(part)
701 bundler.addpart(part)
702 _getbundleextrapart(bundler, repo, source, heads=None, common=None,
702 _getbundleextrapart(bundler, repo, source, heads=heads, common=common,
703 bundlecaps=None, **kwargs)
703 bundlecaps=bundlecaps, **kwargs)
704 return util.chunkbuffer(bundler.getchunks())
704 return util.chunkbuffer(bundler.getchunks())
705
705
706 def _getbundleextrapart(bundler, repo, source, heads=None, common=None,
706 def _getbundleextrapart(bundler, repo, source, heads=None, common=None,
General Comments 0
You need to be logged in to leave comments. Login now