Show More
@@ -334,8 +334,10 b' class verifier(object):' | |||
|
334 | 334 | progress.complete() |
|
335 | 335 | |
|
336 | 336 | if self.havemf: |
|
337 | for c, m in sorted([(c, m) for m in mflinkrevs | |
|
338 | for c in mflinkrevs[m]]): | |
|
337 | # since we delete entry in `mflinkrevs` during iteration, any | |
|
338 | # remaining entries are "missing". We need to issue errors for them. | |
|
339 | changesetpairs = [(c, m) for m in mflinkrevs for c in mflinkrevs[m]] | |
|
340 | for c, m in sorted(changesetpairs): | |
|
339 | 341 | if dir: |
|
340 | 342 | self._err(c, _("parent-directory manifest refers to unknown" |
|
341 | 343 | " revision %s") % short(m), label) |
General Comments 0
You need to be logged in to leave comments.
Login now