# HG changeset patch # User FUJIWARA Katsunori # Date 1459263572 -32400 # Node ID 1ace17e1e16082a96467819d93933ffb8585ff1f # Parent d0210a35c81a315392cb0264291ac441791dea55 destutil: show message and hint at updating to the closed head as warning diff -r d0210a35c81a -r 1ace17e1e160 mercurial/destutil.py --- a/mercurial/destutil.py Tue Mar 29 23:59:32 2016 +0900 +++ b/mercurial/destutil.py Tue Mar 29 23:59:32 2016 +0900 @@ -397,15 +397,15 @@ # ========= ========== otherheads = repo.revs('%ln - parents()', heads) if repo['.'].closesbranch(): - ui.status(_('no open descendant heads on branch "%s", ' + ui.warn(_('no open descendant heads on branch "%s", ' 'updating to a closed head\n') % (currentbranch)) if otherheads: - ui.status(_('(committing will reopen the head, ' + ui.warn(_('(committing will reopen the head, ' 'use `hg heads .` to see %i other heads)\n') % (len(otherheads))) else: - ui.status(_('(committing will reopen branch "%s")\n') % + ui.warn(_('(committing will reopen branch "%s")\n') % (currentbranch)) elif otherheads: ui.status(_('%i other heads for branch "%s"\n') %