# HG changeset patch # User Idan Kamara # Date 1327530113 -7200 # Node ID b5f6a63b4dedecc1ea7d762659346fd81177c99d # Parent ba959f6e10f8b582b0d60a092dd144baa9de1414 localrepo: fix phaseroots filecache definition it's in .hg/store diff -r ba959f6e10f8 -r b5f6a63b4ded mercurial/localrepo.py --- a/mercurial/localrepo.py Tue Jan 24 19:49:30 2012 +0100 +++ b/mercurial/localrepo.py Thu Jan 26 00:21:53 2012 +0200 @@ -176,7 +176,7 @@ def _writebookmarks(self, marks): bookmarks.write(self) - @filecache('phaseroots') + @filecache('phaseroots', True) def _phaseroots(self): self._dirtyphases = False phaseroots = phases.readroots(self)