changeset 13526:8ac1260941c0 stable

bookmark: fix invalidation of localrepo._bookmarkcurrent
author Steve Borho <steve@borho.org>
date Wed, 02 Mar 2011 21:57:20 -0600
parents 9510ddf87c43
children d931cce7f207 67fbe566eff1
files mercurial/localrepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/localrepo.py	Wed Mar 02 14:09:06 2011 +0100
+++ b/mercurial/localrepo.py	Wed Mar 02 21:57:20 2011 -0600
@@ -763,7 +763,7 @@
         self._branchcachetip = None
 
     def invalidate(self):
-        for a in ("changelog", "manifest", "_bookmarks", "_bookmarkscurrent"):
+        for a in ("changelog", "manifest", "_bookmarks", "_bookmarkcurrent"):
             if a in self.__dict__:
                 delattr(self, a)
         self.invalidatecaches()