##// END OF EJS Templates
bookmark: fix invalidation of localrepo._bookmarkcurrent
Steve Borho -
r13526:8ac12609 stable
parent child Browse files
Show More
@@ -763,7 +763,7 b' class localrepository(repo.repository):'
763 763 self._branchcachetip = None
764 764
765 765 def invalidate(self):
766 for a in ("changelog", "manifest", "_bookmarks", "_bookmarkscurrent"):
766 for a in ("changelog", "manifest", "_bookmarks", "_bookmarkcurrent"):
767 767 if a in self.__dict__:
768 768 delattr(self, a)
769 769 self.invalidatecaches()
General Comments 0
You need to be logged in to leave comments. Login now