diff --git a/mercurial/match.py b/mercurial/match.py --- a/mercurial/match.py +++ b/mercurial/match.py @@ -121,6 +121,10 @@ class match(object): pass def dir(self, f): pass + def explicitdir(self, f): + self.dir(f) + def traversedir(self, f): + self.dir(f) def missing(self, f): pass def exact(self, f):