hgext/relink.py
changeset 12744 0793d763e413
parent 12062 c327bfa5e831
child 13656 0e200e1801f4
child 13657 b69102740e57
--- a/hgext/relink.py	Sat Oct 16 18:09:01 2010 +0200
+++ b/hgext/relink.py	Tue Jul 20 20:53:48 2010 +0200
@@ -117,7 +117,7 @@
             ui.debug(_('not linkable: %s\n') % fn)
             continue
         targets.append((fn, ts.st_size))
-        ui.progress(_('pruning'), pos, fn, _(' files'), total)
+        ui.progress(_('pruning'), pos, fn, _('files'), total)
 
     ui.progress(_('pruning'), None)
     ui.status(_('pruned down to %d probably relinkable files\n') % len(targets))
@@ -160,7 +160,7 @@
             continue
         try:
             relinkfile(source, tgt)
-            ui.progress(_('relinking'), pos, f, _(' files'), total)
+            ui.progress(_('relinking'), pos, f, _('files'), total)
             relinked += 1
             savedbytes += sz
         except OSError, inst: