Mercurial > evolve
changeset 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 | e7949274c3f9 |
children | c5efcbbd0dc4 3947964a4ce7 |
files | hgext3rd/pullbundle.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)