Mercurial > public > mercurial-scm > hg
comparison mercurial/vfs.py @ 41094:adee334d94cd
vfs: handle _auditpath in proxyvfs
Just forward the call to the underlying vfs.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Wed, 02 Jan 2019 10:29:36 +0100 |
parents | 6498f0e03526 |
children | e0d00ec2d614 |
comparison
equal
deleted
inserted
replaced
41093:6498f0e03526 | 41094:adee334d94cd |
---|---|
471 | 471 |
472 class proxyvfs(abstractvfs): | 472 class proxyvfs(abstractvfs): |
473 def __init__(self, vfs): | 473 def __init__(self, vfs): |
474 self.vfs = vfs | 474 self.vfs = vfs |
475 | 475 |
476 def _auditpath(self, path, mode): | |
477 return self.vfs._auditpath(path, mode) | |
478 | |
476 @property | 479 @property |
477 def options(self): | 480 def options(self): |
478 return self.vfs.options | 481 return self.vfs.options |
479 | 482 |
480 @options.setter | 483 @options.setter |