Submitter | phabricator |
---|---|
Date | Feb. 9, 2019, 10:16 p.m. |
Message ID | <0073b8a0993e473e8f79ee5369b0b844@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/38610/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/remotefilelog/__init__.py b/hgext/remotefilelog/__init__.py --- a/hgext/remotefilelog/__init__.py +++ b/hgext/remotefilelog/__init__.py @@ -902,8 +902,7 @@ # If this is a non-follow log without any revs specified, recommend that # the user add -f to speed it up. if not follow and not revs: - match, pats = scmutil.matchandpats(repo['.'], pats, - pycompat.byteskwargs(opts)) + match = scmutil.match(repo['.'], pats, pycompat.byteskwargs(opts)) isfile = not match.anypats() if isfile: for file in match.files():