Submitter | Martin von Zweigbergk |
---|---|
Date | April 9, 2015, 8:31 p.m. |
Message ID | <b2aa870b2de74190ba04.1428611514@martinvonz.mtv.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/8580/ |
State | Accepted |
Headers | show |
Comments
Patch
diff -r a31f63407695 -r b2aa870b2de7 mercurial/manifest.py --- a/mercurial/manifest.py Tue Apr 07 21:08:23 2015 -0700 +++ b/mercurial/manifest.py Tue Apr 07 22:40:25 2015 -0700 @@ -230,7 +230,7 @@ fset = set(match.files()) # avoid the entire walk if we're only looking for specific files - if fset and not match.anypats() and util.all(fn in self for fn in fset): + if not match.anypats() and util.all(fn in self for fn in fset): for fn in sorted(fset): yield fn return