diff --git a/hgext/convert/hg.py b/hgext/convert/hg.py --- a/hgext/convert/hg.py +++ b/hgext/convert/hg.py @@ -425,9 +425,9 @@ class mercurial_sink(common.converter_si tr = self.repo.transaction('bookmark') self.ui.status(_("updating bookmarks\n")) destmarks = self.repo._bookmarks - for bookmark in updatedbookmark: - destmarks[bookmark] = nodemod.bin(updatedbookmark[bookmark]) - destmarks.recordchange(tr) + changes = [(bookmark, nodemod.bin(updatedbookmark[bookmark])) + for bookmark in updatedbookmark] + destmarks.applychanges(self.repo, tr, changes) tr.close() finally: lockmod.release(lock, wlock, tr)