equal
deleted
inserted
replaced
1415 self._refreshchangelog() |
1415 self._refreshchangelog() |
1416 return bookmarks.bmstore(self) |
1416 return bookmarks.bmstore(self) |
1417 |
1417 |
1418 def _refreshchangelog(self): |
1418 def _refreshchangelog(self): |
1419 """make sure the in memory changelog match the on-disk one""" |
1419 """make sure the in memory changelog match the on-disk one""" |
1420 if b'changelog' in vars(self) and self.currenttransaction() is None: |
1420 if 'changelog' in vars(self) and self.currenttransaction() is None: |
1421 del self.changelog |
1421 del self.changelog |
1422 |
1422 |
1423 @property |
1423 @property |
1424 def _activebookmark(self): |
1424 def _activebookmark(self): |
1425 return self._bookmarks.active |
1425 return self._bookmarks.active |