Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/context.py @ 12031:77bbeafd7519
Merge with stable
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 25 Aug 2010 13:40:46 +0200 |
parents | a8614c5a5e9a 927d63be166b |
children | fddacca3202e |
comparison
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 |