changeset 16938:ba9bfdc6bfb2

ui: lowercase ConfigError warning message
author Martin Geisler <mg@aragost.com>
date Tue, 12 Jun 2012 14:18:18 +0200
parents 5487088f0d43
children fa91ddfc3f36
files mercurial/ui.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/ui.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/mercurial/ui.py	Tue Jun 12 14:18:18 2012 +0200
@@ -86,7 +86,7 @@
         except error.ConfigError, inst:
             if trusted:
                 raise
-            self.warn(_("Ignored: %s\n") % str(inst))
+            self.warn(_("ignored: %s\n") % str(inst))
 
         if self.plain():
             for k in ('debug', 'fallbackencoding', 'quiet', 'slash',