diff -r e1a3d7ed478e -r 77bbeafd7519 mercurial/context.py --- a/mercurial/context.py Mon Aug 23 22:22:05 2010 +0200 +++ b/mercurial/context.py Wed Aug 25 13:40:46 2010 +0200 @@ -198,7 +198,7 @@ if match(fn): yield fn for fn in sorted(fset): - if match.bad(fn, 'No such file in rev ' + str(self)) and match(fn): + if match.bad(fn, _('No such file in rev %s') % self) and match(fn): yield fn def sub(self, path):