# HG changeset patch # User Kyle Lippincott # Date 2019-01-15 23:43:00 # Node ID b129837190f754afdc61f04583b4da51bf74fccd # Parent 32ef47b3c91c2913ab13cabf9efcdde3ef137987 context: use scmutil.matchfiles instead of matchmod.match(exact=True) Differential Revision: https://phab.mercurial-scm.org/D5591 diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -2022,7 +2022,7 @@ class overlayworkingctx(committablectx): # using things like remotefilelog. scmutil.prefetchfiles( self.repo(), [self.p1().rev()], - matchmod.match('', '', patterns=self._cache.keys(), exact=True)) + scmutil.matchfiles(self.repo(), self._cache.keys())) for path in self._cache.keys(): cache = self._cache[path]