# HG changeset patch # User Boris Feld # Date 2019-01-02 09:29:36 # Node ID adee334d94cd0dee13eb94647c9556dbe8a1f8c5 # Parent 6498f0e03526af31cbfce6ceb87d17c58c4ce12f vfs: handle _auditpath in proxyvfs Just forward the call to the underlying vfs. diff --git a/mercurial/vfs.py b/mercurial/vfs.py --- a/mercurial/vfs.py +++ b/mercurial/vfs.py @@ -473,6 +473,9 @@ class proxyvfs(abstractvfs): def __init__(self, vfs): self.vfs = vfs + def _auditpath(self, path, mode): + return self.vfs._auditpath(path, mode) + @property def options(self): return self.vfs.options