changeset 17725 | ffd589d4b785 |
parent 17723 | ab23768746fd |
child 17726 | 7cb7e17c23b2 |
--- a/mercurial/scmutil.py Tue Oct 09 01:41:55 2012 +0900 +++ b/mercurial/scmutil.py Tue Oct 09 01:41:55 2012 +0900 @@ -347,6 +347,12 @@ def __call__(self, path, *args, **kwargs): return self._orig(self._filter(path), *args, **kwargs) + def join(self, path): + if path: + return self._orig.join(self._filter(path)) + else: + return self._orig.join(path) + filteropener = filtervfs def canonpath(root, cwd, myname, auditor=None):