Submitter | phabricator |
---|---|
Date | Feb. 6, 2020, 10:12 p.m. |
Message ID | <921fc68c5493ac5413a1fe70e119044a@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/45004/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -530,7 +530,8 @@ # avoid the entire walk if we're only looking for specific files if self._filesfastpath(match): for fn in sorted(fset): - yield fn + if fn in self: + yield fn return for fn in self: