diff hgext/relink.py @ 12744:0793d763e413

progress: dropping superfluous space from units
author timeless <timeless@gmail.com>
date Tue, 20 Jul 2010 20:53:48 +0200
parents c327bfa5e831
children 0e200e1801f4 b69102740e57
line wrap: on
line diff
--- 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: