# HG changeset patch # User Boris Feld # Date 1546421376 -3600 # Node ID adee334d94cd0dee13eb94647c9556dbe8a1f8c5 # Parent 6498f0e03526af31cbfce6ceb87d17c58c4ce12f vfs: handle _auditpath in proxyvfs Just forward the call to the underlying vfs. diff -r 6498f0e03526 -r adee334d94cd mercurial/vfs.py --- a/mercurial/vfs.py Wed Jan 02 10:29:12 2019 +0100 +++ b/mercurial/vfs.py Wed Jan 02 10:29:36 2019 +0100 @@ -473,6 +473,9 @@ 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