diff mercurial/commands.py @ 12067:a4fbbe0fbc38 stable

Lowercase error messages
author Martin Geisler <mg@lazybytes.net>
date Sun, 29 Aug 2010 22:37:58 +0200
parents 2da0cf99b642
children fddacca3202e ebfc46929f3e
line wrap: on
line diff
--- a/mercurial/commands.py	Thu Aug 26 23:11:03 2010 +0200
+++ b/mercurial/commands.py	Sun Aug 29 22:37:58 2010 +0200
@@ -846,7 +846,7 @@
         lookup = r.lookup
     elif len(args) == 2:
         if not repo:
-            raise util.Abort(_("There is no Mercurial repository here "
+            raise util.Abort(_("there is no Mercurial repository here "
                                "(.hg not found)"))
         rev1, rev2 = args
         r = repo.changelog
@@ -2105,7 +2105,7 @@
     """
 
     if not repo and not source:
-        raise util.Abort(_("There is no Mercurial repository here "
+        raise util.Abort(_("there is no Mercurial repository here "
                            "(.hg not found)"))
 
     hexfunc = ui.debugflag and hex or short