mercurial/localrepo.py
changeset 41675 ddbebce94665
parent 41615 328ca3b9e545
child 41676 0531dff73d0b
--- a/mercurial/localrepo.py	Sun Feb 10 21:33:21 2019 -0800
+++ b/mercurial/localrepo.py	Sun Feb 10 14:35:36 2019 -0800
@@ -1252,7 +1252,7 @@
             if includeexact and not self._narrowmatch.always():
                 # do not exclude explicitly-specified paths so that they can
                 # be warned later on
-                em = matchmod.exact(match._root, match._cwd, match.files())
+                em = matchmod.exact(None, None, match.files())
                 nm = matchmod.unionmatcher([self._narrowmatch, em])
                 return matchmod.intersectmatchers(match, nm)
             return matchmod.intersectmatchers(match, self._narrowmatch)