Mercurial > public > mercurial-scm > hg-stable
diff mercurial/verify.py @ 7833:794def2fe232
verify: find correct first corrupted cset for missing/corrupted revlogs
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sat, 07 Mar 2009 20:16:03 +0100 |
parents | 1fce19b9b011 |
children | d812029cda85 |
line wrap: on
line diff
--- a/mercurial/verify.py Sat Mar 07 20:04:56 2009 +0100 +++ b/mercurial/verify.py Sat Mar 07 20:16:03 2009 +0100 @@ -172,17 +172,18 @@ files = util.sort(util.unique(filenodes.keys() + filelinkrevs.keys())) for f in files: + lr = filelinkrevs[f][0] try: fl = repo.file(f) except error.RevlogError, e: - err(0, _("broken revlog! (%s)") % e, f) + err(lr, _("broken revlog! (%s)") % e, f) continue for ff in fl.files(): try: del storefiles[ff] except KeyError: - err(0, _("missing revlog!"), ff) + err(lr, _("missing revlog!"), ff) checklog(fl, f) seen = {}