changeset 41224:b129837190f7

context: use scmutil.matchfiles instead of matchmod.match(exact=True) Differential Revision: https://phab.mercurial-scm.org/D5591
author Kyle Lippincott <spectral@google.com>
date Tue, 15 Jan 2019 15:43:00 -0800
parents 32ef47b3c91c
children 44914de4e915
files mercurial/context.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/context.py	Mon Jan 14 22:19:43 2019 -0500
+++ b/mercurial/context.py	Tue Jan 15 15:43:00 2019 -0800
@@ -2022,7 +2022,7 @@
         # 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]