mercurial/vfs.py
branchstable
changeset 50451 d1d458fb96a5
parent 49912 bc83ebe07bf0
child 50754 f173c2c23289
equal deleted inserted replaced
50450:f930af431193 50451:d1d458fb96a5
   597 
   597 
   598 class proxyvfs(abstractvfs):
   598 class proxyvfs(abstractvfs):
   599     def __init__(self, vfs: "vfs"):
   599     def __init__(self, vfs: "vfs"):
   600         self.vfs = vfs
   600         self.vfs = vfs
   601 
   601 
       
   602     @property
       
   603     def createmode(self):
       
   604         return self.vfs.createmode
       
   605 
   602     def _auditpath(self, path, mode):
   606     def _auditpath(self, path, mode):
   603         return self.vfs._auditpath(path, mode)
   607         return self.vfs._auditpath(path, mode)
   604 
   608 
   605     @property
   609     @property
   606     def options(self):
   610     def options(self):