Mercurial > evolve
diff hgext3rd/pullbundle.py @ 5034:1015a1dbaf7c stable
pullbundle: kwarg to changegroup.makestream() is called matcher
Caught by pytype.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Thu, 26 Dec 2019 12:22:49 +0700 |
parents | e8302f760a54 |
children | b9179a034005 |
line wrap: on
line diff
--- 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)