Mercurial > public > mercurial-scm > hg
diff mercurial/store.py @ 33412:a42369e04aee
vfs: rename auditvfs to proxyvfs
Since we've removed mustaudit property, auditvfs has no auditing business.
It's just a utility class for vfs wrappers.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Fri, 07 Jul 2017 23:40:00 +0900 |
parents | df448de7cf3b |
children | 0fa781320203 |
line wrap: on
line diff
--- a/mercurial/store.py Fri Jul 07 23:19:31 2017 +0900 +++ b/mercurial/store.py Fri Jul 07 23:40:00 2017 +0900 @@ -475,9 +475,9 @@ self._load() return iter(self.entries) -class _fncachevfs(vfsmod.abstractvfs, vfsmod.auditvfs): +class _fncachevfs(vfsmod.abstractvfs, vfsmod.proxyvfs): def __init__(self, vfs, fnc, encode): - vfsmod.auditvfs.__init__(self, vfs) + vfsmod.proxyvfs.__init__(self, vfs) self.fncache = fnc self.encode = encode