diff -r d4d35fd0889d -r ce292f1379ba hgext/largefiles/overrides.py --- 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):