Submitter | phabricator |
---|---|
Date | April 12, 2019, 12:38 p.m. |
Message ID | <5c1114faa277ffb7a45c4fe1c13e9692@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/39559/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -1954,7 +1954,7 @@ # Test the other direction -- that this path from p2 isn't a directory # in p1 (test that p1 doesn't have any paths matching `path/*`). - match = self.match(include=[path + '/'], default=b'path') + match = self.match([path + '/'], default=b'path') matches = self.p1().manifest().matches(match) mfiles = matches.keys() if len(mfiles) > 0: