diff mercurial/context.py @ 12067:a4fbbe0fbc38 stable

Lowercase error messages
author Martin Geisler <mg@lazybytes.net>
date Sun, 29 Aug 2010 22:37:58 +0200
parents 927d63be166b
children fddacca3202e b6173aee4a47
line wrap: on
line diff
--- a/mercurial/context.py	Thu Aug 26 23:11:03 2010 +0200
+++ b/mercurial/context.py	Sun Aug 29 22:37:58 2010 +0200
@@ -198,7 +198,7 @@
             if match(fn):
                 yield fn
         for fn in sorted(fset):
-            if match.bad(fn, _('No such file in rev %s') % self) and match(fn):
+            if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
                 yield fn
 
     def sub(self, path):