mercurial/commands.py
changeset 22201 269688a398c4
parent 22119 fd172ba5c64b
child 22207 8dda6f6ff564
equal deleted inserted replaced
22200:b27c3beaaf30 22201:269688a398c4
  5591     else:
  5591     else:
  5592         # i18n: column positioning for "hg summary"
  5592         # i18n: column positioning for "hg summary"
  5593         ui.write(_('commit: %s\n') % t.strip())
  5593         ui.write(_('commit: %s\n') % t.strip())
  5594 
  5594 
  5595     # all ancestors of branch heads - all ancestors of parent = new csets
  5595     # all ancestors of branch heads - all ancestors of parent = new csets
  5596     new = len(repo.changelog.findmissing([ctx.node() for ctx in parents],
  5596     new = len(repo.changelog.findmissing([pctx.node() for pctx in parents],
  5597                                          bheads))
  5597                                          bheads))
  5598 
  5598 
  5599     if new == 0:
  5599     if new == 0:
  5600         # i18n: column positioning for "hg summary"
  5600         # i18n: column positioning for "hg summary"
  5601         ui.status(_('update: (current)\n'))
  5601         ui.status(_('update: (current)\n'))