##// END OF EJS Templates
auditvfs: forward options property from nested vfs...
Augie Fackler -
r29714:69109052 default
parent child Browse files
Show More
@@ -638,6 +638,14 b' class auditvfs(object):'
638 638 def mustaudit(self, onoff):
639 639 self.vfs.mustaudit = onoff
640 640
641 @property
642 def options(self):
643 return self.vfs.options
644
645 @options.setter
646 def options(self, value):
647 self.vfs.options = value
648
641 649 class filtervfs(abstractvfs, auditvfs):
642 650 '''Wrapper vfs for filtering filenames with a function.'''
643 651
General Comments 0
You need to be logged in to leave comments. Login now