##// END OF EJS Templates
context: mark string for translation
Martin Geisler -
r12030:927d63be stable
parent child Browse files
Show More
@@ -198,7 +198,7 b' class changectx(object):'
198 if match(fn):
198 if match(fn):
199 yield fn
199 yield fn
200 for fn in sorted(fset):
200 for fn in sorted(fset):
201 if match.bad(fn, 'No such file in rev ' + str(self)) and match(fn):
201 if match.bad(fn, _('No such file in rev %s') % self) and match(fn):
202 yield fn
202 yield fn
203
203
204 def sub(self, path):
204 def sub(self, path):
General Comments 0
You need to be logged in to leave comments. Login now