diff mercurial/ui.py @ 16940:6409a5c75125

ui: lowercase "no username" warning
author Martin Geisler <mg@aragost.com>
date Tue, 12 Jun 2012 14:18:18 +0200
parents fa91ddfc3f36
children fba17a64fa49
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
@@ -409,7 +409,7 @@
         if user is None and not self.interactive():
             try:
                 user = '%s@%s' % (util.getuser(), socket.getfqdn())
-                self.warn(_("No username found, using '%s' instead\n") % user)
+                self.warn(_("no username found, using '%s' instead\n") % user)
             except KeyError:
                 pass
         if not user: