changeset 41094:adee334d94cd

vfs: handle _auditpath in proxyvfs Just forward the call to the underlying vfs.
author Boris Feld <boris.feld@octobus.net>
date Wed, 02 Jan 2019 10:29:36 +0100
parents 6498f0e03526
children e0d00ec2d614
files mercurial/vfs.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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