debuginstall: change showing to checking for consistency and future checking
authorMatt Mackall <mpm@selenic.com>
Fri, 14 Mar 2014 16:00:11 -0500
changeset 20741 f1dfef0a9352
parent 20740 535283a7f5dd
child 20742 3681de20b0a7
debuginstall: change showing to checking for consistency and future checking
mercurial/commands.py
tests/test-install.t
--- a/mercurial/commands.py	Tue Dec 31 00:37:16 2013 -0800
+++ b/mercurial/commands.py	Fri Mar 14 16:00:11 2014 -0500
@@ -2161,8 +2161,8 @@
         problems += 1
 
     # Python
-    ui.status(_("showing Python executable (%s)\n") % sys.executable)
-    ui.status(_("showing Python version (%s)\n")
+    ui.status(_("checking Python executable (%s)\n") % sys.executable)
+    ui.status(_("checking Python version (%s)\n")
               % ("%s.%s.%s" % sys.version_info[:3]))
     ui.status(_("checking Python lib (%s)...\n")
               % os.path.dirname(os.__file__))
--- a/tests/test-install.t	Tue Dec 31 00:37:16 2013 -0800
+++ b/tests/test-install.t	Fri Mar 14 16:00:11 2014 -0500
@@ -1,8 +1,8 @@
 hg debuginstall
   $ hg debuginstall
   checking encoding (ascii)...
-  showing Python executable (*) (glob)
-  showing Python version (2.*) (glob)
+  checking Python executable (*) (glob)
+  checking Python version (2.*) (glob)
   checking Python lib (*lib*)... (glob)
   checking installed modules (*mercurial)... (glob)
   checking templates (*mercurial?templates)... (glob)
@@ -13,8 +13,8 @@
 hg debuginstall with no username
   $ HGUSER= hg debuginstall
   checking encoding (ascii)...
-  showing Python executable (*) (glob)
-  showing Python version (2.*) (glob)
+  checking Python executable (*) (glob)
+  checking Python version (2.*) (glob)
   checking Python lib (*lib*)... (glob)
   checking installed modules (*mercurial)... (glob)
   checking templates (*mercurial?templates)... (glob)