mercurial/hg.py
branchstable
changeset 20868 5db105f216c3
parent 20858 bc56ec9e64df
child 20870 6500a2eebee8
equal deleted inserted replaced
20867:539d9f839197 20868:5db105f216c3
   431                         update = '@'
   431                         update = '@'
   432                         bn = destrepo[uprev].branch()
   432                         bn = destrepo[uprev].branch()
   433                         if bn == 'default':
   433                         if bn == 'default':
   434                             status = _("updating to bookmark @\n")
   434                             status = _("updating to bookmark @\n")
   435                         else:
   435                         else:
   436                             status = _("updating to bookmark @ on branch %s\n"
   436                             status = (_("updating to bookmark @ on branch %s\n")
   437                                        % bn)
   437                                        % bn)
   438                     except KeyError:
   438                     except KeyError:
   439                         try:
   439                         try:
   440                             uprev = destrepo.branchtip('default')
   440                             uprev = destrepo.branchtip('default')
   441                         except error.RepoLookupError:
   441                         except error.RepoLookupError: