Show More
@@ -638,6 +638,14 b' class auditvfs(object):' | |||||
638 | def mustaudit(self, onoff): |
|
638 | def mustaudit(self, onoff): | |
639 | self.vfs.mustaudit = onoff |
|
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 | class filtervfs(abstractvfs, auditvfs): |
|
649 | class filtervfs(abstractvfs, auditvfs): | |
642 | '''Wrapper vfs for filtering filenames with a function.''' |
|
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