mercurial/context.py
changeset 12031 77bbeafd7519
parent 11775 a8614c5a5e9a
parent 12030 927d63be166b
child 12070 fddacca3202e
equal deleted inserted replaced
12027:e1a3d7ed478e 12031:77bbeafd7519
   196                     fset.remove(ffn)
   196                     fset.remove(ffn)
   197                     break
   197                     break
   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):
   205         return subrepo.subrepo(self, path)
   205         return subrepo.subrepo(self, path)
   206 
   206