diff hgext/largefiles/lfutil.py @ 16928:73b9286e667c

largefiles: lowercase messages
author Martin Geisler <mg@aragost.com>
date Tue, 12 Jun 2012 14:18:18 +0200
parents d87d9d8a8e03
children 32246faba53a
line wrap: on
line diff
--- a/hgext/largefiles/lfutil.py	Tue Jun 12 14:18:18 2012 +0200
+++ b/hgext/largefiles/lfutil.py	Tue Jun 12 14:18:18 2012 +0200
@@ -115,10 +115,10 @@
 
 def findfile(repo, hash):
     if instore(repo, hash):
-        repo.ui.note(_('Found %s in store\n') % hash)
+        repo.ui.note(_('found %s in store\n') % hash)
         return storepath(repo, hash)
     elif inusercache(repo.ui, hash):
-        repo.ui.note(_('Found %s in system cache\n') % hash)
+        repo.ui.note(_('found %s in system cache\n') % hash)
         path = storepath(repo, hash)
         util.makedirs(os.path.dirname(path))
         link(usercachepath(repo.ui, hash), path)