dispatch: lowercase --time message
authorMartin Geisler <mg@aragost.com>
Tue, 12 Jun 2012 14:18:18 +0200
changeset 16933 30143c3dd102
parent 16932 7985a9e2ddce
child 16934 0c9c41e53f1a
dispatch: lowercase --time message
mercurial/dispatch.py
tests/test-globalopts.t
tests/test-profile.t
--- a/mercurial/dispatch.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/mercurial/dispatch.py	Tue Jun 12 14:18:18 2012 +0200
@@ -654,7 +654,7 @@
         s = get_times()
         def print_time():
             t = get_times()
-            ui.warn(_("Time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
+            ui.warn(_("time: real %.3f secs (user %.3f+%.3f sys %.3f+%.3f)\n") %
                 (t[4]-s[4], t[0]-s[0], t[2]-s[2], t[1]-s[1], t[3]-s[3]))
         atexit.register(print_time)
 
--- a/tests/test-globalopts.t	Tue Jun 12 14:18:18 2012 +0200
+++ b/tests/test-globalopts.t	Tue Jun 12 14:18:18 2012 +0200
@@ -265,7 +265,7 @@
 
   $ hg --cwd a --time id
   8580ff50825a tip
-  Time: real * (glob)
+  time: real * (glob)
 
 Testing --version:
 
--- a/tests/test-profile.t	Tue Jun 12 14:18:18 2012 +0200
+++ b/tests/test-profile.t	Tue Jun 12 14:18:18 2012 +0200
@@ -1,6 +1,6 @@
 test --time
 
-  $ hg --time help -q help 2>&1 | grep Time > /dev/null
+  $ hg --time help -q help 2>&1 | grep time > /dev/null
   $ hg init a
   $ cd a