diff hgext/largefiles/overrides.py @ 16231:ce292f1379ba stable

i18n: fix all remaining uses of % inside _()
author Matt Mackall <mpm@selenic.com>
date Thu, 08 Mar 2012 13:35:27 -0600
parents 3e1efb458e8b
children 877aea86fb73
line wrap: on
line diff
--- a/hgext/largefiles/overrides.py	Wed Mar 07 23:21:11 2012 +0000
+++ b/hgext/largefiles/overrides.py	Thu Mar 08 13:35:27 2012 -0600
@@ -157,7 +157,7 @@
                 # If this is being called by addremove, notify the user that we
                 # are removing the file.
                 if getattr(repo, "_isaddremove", False):
-                    ui.status(_('removing %s\n' % f))
+                    ui.status(_('removing %s\n') % f)
                 if os.path.exists(repo.wjoin(f)):
                     util.unlinkpath(repo.wjoin(f))
             lfdirstate.remove(f)
@@ -673,7 +673,7 @@
         for head in newheads:
             (cached, missing) = lfcommands.cachelfiles(ui, repo, head)
             numcached += len(cached)
-        ui.status(_("%d largefiles cached\n" % numcached))
+        ui.status(_("%d largefiles cached\n") % numcached)
     return result
 
 def override_rebase(orig, ui, repo, **opts):