hgext/evolve.py
branchstable
changeset 1335 50a40a8cf7be
parent 1330 efb75f4d55aa
child 1340 f455ce2a3587
--- a/hgext/evolve.py	Thu May 07 13:20:11 2015 -0700
+++ b/hgext/evolve.py	Wed May 13 08:47:27 2015 -0700
@@ -863,12 +863,8 @@
     """Return a callable update(newid) updating the current bookmark
     and bookmarks bound to oldid to newid.
     """
-    bm = bmactive(repo)
     def updatebookmarks(newid):
         dirty = False
-        if bm:
-            repo._bookmarks[bm] = newid
-            dirty = True
         oldbookmarks = repo.nodebookmarks(oldid)
         if oldbookmarks:
             for b in oldbookmarks: