hgext/largefiles/overrides.py
changeset 16232 877aea86fb73
parent 16120 47ee41fcf42b
parent 16231 ce292f1379ba
child 16245 a18ad914aa21
--- a/hgext/largefiles/overrides.py	Sun Mar 04 17:14:30 2012 -0600
+++ b/hgext/largefiles/overrides.py	Thu Mar 08 15:59:33 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)
@@ -682,7 +682,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):