##// END OF EJS Templates
proxy-vfs: also proxy the `audit` attribute...
marmoute -
r52486:b5500857 default
parent child Browse files
Show More
@@ -616,6 +616,10 b' class proxyvfs(abstractvfs):'
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.'''
General Comments 0
You need to be logged in to leave comments. Login now