hgext/remotefilelog/shallowbundle.py
branchstable
changeset 44404 6d121acbb82e
parent 43506 9f70512ae2cf
child 46711 a41565bef69f
--- a/hgext/remotefilelog/shallowbundle.py	Fri Feb 28 11:22:47 2020 +0100
+++ b/hgext/remotefilelog/shallowbundle.py	Wed Feb 19 13:39:00 2020 +0530
@@ -54,12 +54,12 @@
 
 
 class shallowcg1packer(changegroup.cgpacker):
-    def generate(self, commonrevs, clnodes, fastpathlinkrev, source):
+    def generate(self, commonrevs, clnodes, fastpathlinkrev, source, **kwargs):
         if shallowutil.isenabled(self._repo):
             fastpathlinkrev = False
 
         return super(shallowcg1packer, self).generate(
-            commonrevs, clnodes, fastpathlinkrev, source
+            commonrevs, clnodes, fastpathlinkrev, source, **kwargs
         )
 
     def group(self, nodelist, rlog, lookup, units=None, reorder=None):