Mercurial > public > mercurial-scm > hg-stable
diff hgext/relink.py @ 14709:6c7283faa967 stable
check-code: don't mark debug messages for translation
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 21 Jun 2011 15:21:57 -0500 |
parents | 517e1d88bf7e |
children | 11aad09a6370 |
line wrap: on
line diff
--- a/hgext/relink.py Tue Jun 21 18:35:13 2011 +0200 +++ b/hgext/relink.py Tue Jun 21 15:21:57 2011 -0500 @@ -117,7 +117,7 @@ tgt = os.path.join(dst, fn) ts = linkfilter(srcpath, tgt, st) if not ts: - ui.debug(_('not linkable: %s\n') % fn) + ui.debug('not linkable: %s\n' % fn) continue targets.append((fn, ts.st_size)) ui.progress(_('pruning'), pos, fn, _('files'), total) @@ -159,7 +159,7 @@ sfp.close() dfp.close() if sin: - ui.debug(_('not linkable: %s\n') % f) + ui.debug('not linkable: %s\n' % f) continue try: relinkfile(source, tgt)