##// 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 self._branchcachetip = None
763 self._branchcachetip = None
764
764
765 def invalidate(self):
765 def invalidate(self):
766 for a in ("changelog", "manifest", "_bookmarks", "_bookmarkscurrent"):
766 for a in ("changelog", "manifest", "_bookmarks", "_bookmarkcurrent"):
767 if a in self.__dict__:
767 if a in self.__dict__:
768 delattr(self, a)
768 delattr(self, a)
769 self.invalidatecaches()
769 self.invalidatecaches()
General Comments 0
You need to be logged in to leave comments. Login now