diff -r ef7636efeb01 -r fcd06ecd4cb7 mercurial/commands.py --- a/mercurial/commands.py Tue Jun 08 21:09:41 2010 +0200 +++ b/mercurial/commands.py Tue Jun 08 15:52:56 2010 -0500 @@ -3280,22 +3280,22 @@ cleanworkdir = False if len(parents) > 1: - t += ui.label(_(' (merge)'), 'ui.plain') + t += _(' (merge)') elif branch != parents[0].branch(): - t += ui.label(_(' (new branch)'), 'ui.plain') + t += _(' (new branch)') elif (parents[0].extra().get('close') and pnode in repo.branchheads(branch, closed=True)): - t += ui.label(_(' (head closed)'), 'ui.plain') + t += _(' (head closed)') elif (not st[0] and not st[1] and not st[2] and not st[7]): - t += ui.label(_(' (clean)'), 'ui.plain') + t += _(' (clean)') cleanworkdir = True elif pnode not in bheads: - t += ui.label(_(' (new branch head)'), 'ui.plain') + t += _(' (new branch head)') if cleanworkdir: - ui.status(_('commit: %s\n') % t.strip(), label='ui.labeled') + ui.status(_('commit: %s\n') % t.strip()) else: - ui.write(_('commit: %s\n') % t.strip(), label='ui.labeled') + ui.write(_('commit: %s\n') % t.strip()) # all ancestors of branch heads - all ancestors of parent = new csets new = [0] * len(repo)