[PATCH 14 of 21] debuginstall: lowercase output

Martin Geisler mg at daimi.au.dk
Sat Jan 3 10:40:12 CST 2009


# HG changeset patch
# User Martin Geisler <mg at daimi.au.dk>
# Date 1230999321 -3600
# Node ID d4e42e050c0cdf52d90abb821d1e235f39728306
# Parent  aeab7099a6c96538db3e5a67d4aec3bec8dae60a
debuginstall: lowercase output

This is debug output and scripts should not rely on it.

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -874,7 +874,7 @@
         import bdiff, mpatch, base85
     except Exception, inst:
         ui.write(" %s\n" % inst)
-        ui.write(_(" One or more extensions could not be found"))
+        ui.write(_(" one or more extensions could not be found"))
         ui.write(_(" (check that you compiled the extensions)\n"))
         problems += 1
 
@@ -916,10 +916,10 @@
 
     if patchproblems:
         if ui.config('ui', 'patch'):
-            ui.write(_(" (Current patch tool may be incompatible with patch,"
+            ui.write(_(" (current patch tool may be incompatible with patch,"
                        " or misconfigured. Please check your .hgrc file)\n"))
         else:
-            ui.write(_(" Internal patcher failure, please report this error"
+            ui.write(_(" internal patcher failure, please report this error"
                        " to http://www.selenic.com/mercurial/bts\n"))
     problems += patchproblems
 
@@ -932,7 +932,7 @@
     cmdpath = util.find_exe(editor) or util.find_exe(editor.split()[0])
     if not cmdpath:
         if editor == 'vi':
-            ui.write(_(" No commit editor set and can't find vi in PATH\n"))
+            ui.write(_(" no commit editor set and can't find vi in PATH\n"))
             ui.write(_(" (specify a commit editor in your .hgrc file)\n"))
         else:
             ui.write(_(" Can't find editor '%s' in PATH\n") % editor)


More information about the Mercurial-devel mailing list