mercurial/vfs.py
changeset 51593 b5500857e173
parent 51430 187c5769a629
equal deleted inserted replaced
51592:24844407fa0d 51593:b5500857e173
   614 
   614 
   615     @options.setter
   615     @options.setter
   616     def options(self, value):
   616     def options(self, value):
   617         self.vfs.options = value
   617         self.vfs.options = value
   618 
   618 
       
   619     @property
       
   620     def audit(self):
       
   621         return self.vfs.audit
       
   622 
   619 
   623 
   620 class filtervfs(proxyvfs, abstractvfs):
   624 class filtervfs(proxyvfs, abstractvfs):
   621     '''Wrapper vfs for filtering filenames with a function.'''
   625     '''Wrapper vfs for filtering filenames with a function.'''
   622 
   626 
   623     def __init__(self, vfs: "vfs", filter):
   627     def __init__(self, vfs: "vfs", filter):