pullbundle: kwarg to changegroup.makestream() is called matcher stable
authorAnton Shestakov <av6@dwimlabs.net>
Thu, 26 Dec 2019 12:22:49 +0700
branchstable
changeset 5034 1015a1dbaf7c
parent 5026 e7949274c3f9
child 5035 c5efcbbd0dc4
child 5048 3947964a4ce7
pullbundle: kwarg to changegroup.makestream() is called matcher Caught by pytype.
hgext3rd/pullbundle.py
--- a/hgext3rd/pullbundle.py	Fri Dec 20 17:39:44 2019 +0530
+++ b/hgext3rd/pullbundle.py	Thu Dec 26 12:22:49 2019 +0700
@@ -392,7 +392,7 @@
         if filematcher is not None:
             cgstream = changegroup.makestream(repo, outgoing, version, source,
                                               bundlecaps=bundlecaps,
-                                              filematcher=filematcher)
+                                              matcher=filematcher)
         else:
             cgstream = changegroup.makestream(repo, outgoing, version, source,
                                               bundlecaps=bundlecaps)