##// END OF EJS Templates
verify: filter messages about missing null manifests (issue2900)
Matt Mackall -
r14865:eb914541 stable
parent child Browse files
Show More
@@ -168,6 +168,8 b' def _verify(repo):'
168 for c, m in sorted([(c, m) for m in mflinkrevs
168 for c, m in sorted([(c, m) for m in mflinkrevs
169 for c in mflinkrevs[m]]):
169 for c in mflinkrevs[m]]):
170 count += 1
170 count += 1
171 if m == nullid:
172 continue
171 ui.progress(_('crosschecking'), count, total=total)
173 ui.progress(_('crosschecking'), count, total=total)
172 err(c, _("changeset refers to unknown manifest %s") % short(m))
174 err(c, _("changeset refers to unknown manifest %s") % short(m))
173 mflinkrevs = None # del is bad here due to scope issues
175 mflinkrevs = None # del is bad here due to scope issues
General Comments 0
You need to be logged in to leave comments. Login now