Skip to content
Snippets Groups Projects
Commit eb914541a950 authored by Matt Mackall's avatar Matt Mackall
Browse files

verify: filter messages about missing null manifests (issue2900)

parent 1b872599f39f
No related branches found
No related tags found
No related merge requests found
......@@ -168,6 +168,8 @@
for c, m in sorted([(c, m) for m in mflinkrevs
for c in mflinkrevs[m]]):
count += 1
if m == nullid:
continue
ui.progress(_('crosschecking'), count, total=total)
err(c, _("changeset refers to unknown manifest %s") % short(m))
mflinkrevs = None # del is bad here due to scope issues
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment