cmdutil: lowercase finddate status message
authorMartin Geisler <mg@aragost.com>
Tue, 12 Jun 2012 14:18:18 +0200
changeset 16937 5487088f0d43
parent 16936 ee7dd2307031
child 16938 ba9bfdc6bfb2
cmdutil: lowercase finddate status message This message is output by 'hg revert -d DATE' and 'hg update -d DATE'.
mercurial/cmdutil.py
--- a/mercurial/cmdutil.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/mercurial/cmdutil.py	Tue Jun 12 14:18:18 2012 +0200
@@ -952,7 +952,7 @@
     for ctx in walkchangerevs(repo, m, {'rev': None}, prep):
         rev = ctx.rev()
         if rev in results:
-            ui.status(_("Found revision %s from %s\n") %
+            ui.status(_("found revision %s from %s\n") %
                       (rev, util.datestr(results[rev])))
             return str(rev)