Mercurial > public > mercurial-scm > hg-stable
diff hgext/relink.py @ 9790:819e6c7085fc
relink: do not translate format string with no text
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 08 Nov 2009 00:11:34 +0100 |
parents | aa9ccab5af37 |
children | 56af3f240a22 750b7a4f01f6 |
line wrap: on
line diff
--- a/hgext/relink.py Sat Nov 07 23:38:01 2009 +0100 +++ b/hgext/relink.py Sun Nov 08 00:11:34 2009 +0100 @@ -135,7 +135,7 @@ relinked += 1 savedbytes += sz except OSError, inst: - ui.warn(_('%s: %s\n') % (tgt, str(inst))) + ui.warn('%s: %s\n' % (tgt, str(inst))) ui.status(_('relinked %d files (%d bytes reclaimed)\n') % (relinked, savedbytes))