# HG changeset patch # User Anton Shestakov # Date 1577337769 -25200 # Node ID 1015a1dbaf7c436d3a26fe03dae480c0aa49f866 # Parent e7949274c3f904edd613f02a7046adf6d6e76720 pullbundle: kwarg to changegroup.makestream() is called matcher Caught by pytype. diff -r e7949274c3f9 -r 1015a1dbaf7c 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)