diff mercurial/commands.py @ 16936:ee7dd2307031

bisect: lowercase status message
author Martin Geisler <mg@aragost.com>
date Tue, 12 Jun 2012 14:18:18 +0200
parents f635c476fa3f
children 66721a0d2249
line wrap: on
line diff
--- a/mercurial/commands.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/mercurial/commands.py	Tue Jun 12 14:18:18 2012 +0200
@@ -684,7 +684,7 @@
                 ctx = scmutil.revsingle(repo, rev, node)
                 rev = None # clear for future iterations
                 state[transition].append(ctx.node())
-                ui.status(_('Changeset %d:%s: %s\n') % (ctx, ctx, transition))
+                ui.status(_('changeset %d:%s: %s\n') % (ctx, ctx, transition))
                 check_state(state, interactive=False)
                 # bisect
                 nodes, changesets, good = hbisect.bisect(repo.changelog, state)