hgext/rebase.py
changeset 19926 0f99747202f9
parent 19925 9c78ed396075
child 19951 d51c4d85ec23
equal deleted inserted replaced
19925:9c78ed396075 19926:0f99747202f9
   380         util.unlinkpath(repo.sjoin('undo'), ignoremissing=True)
   380         util.unlinkpath(repo.sjoin('undo'), ignoremissing=True)
   381         if skipped:
   381         if skipped:
   382             ui.note(_("%d revisions have been skipped\n") % len(skipped))
   382             ui.note(_("%d revisions have been skipped\n") % len(skipped))
   383 
   383 
   384         if (activebookmark and
   384         if (activebookmark and
   385             repo['tip'].node() == repo._bookmarks[activebookmark]):
   385             repo['.'].node() == repo._bookmarks[activebookmark]):
   386                 bookmarks.setcurrent(repo, activebookmark)
   386                 bookmarks.setcurrent(repo, activebookmark)
   387 
   387 
   388     finally:
   388     finally:
   389         release(lock, wlock)
   389         release(lock, wlock)
   390 
   390