# HG changeset patch # User David Soria Parra # Date 1248386664 -7200 # Node ID dde454349864ca91939f3abcf395f03014e949f3 # Parent 65719472bfa2cde9630b2fc019688d95327d3e69 bookmarks: Wrap commictx instead of commit (issue 1515) diff -r 65719472bfa2 -r dde454349864 hgext/bookmarks.py --- a/hgext/bookmarks.py Thu Jul 23 15:26:29 2009 -0500 +++ b/hgext/bookmarks.py Fri Jul 24 00:04:24 2009 +0200 @@ -246,12 +246,12 @@ key = self._bookmarks[key] return super(bookmark_repo, self).lookup(key) - def commit(self, *k, **kw): + def commitctx(self, ctx, error=False): """Add a revision to the repository and move the bookmark""" wlock = self.wlock() # do both commit and bookmark with lock held try: - node = super(bookmark_repo, self).commit(*k, **kw) + node = super(bookmark_repo, self).commitctx(ctx, error) if node is None: return None parents = self.changelog.parents(node)