Skip to content
Snippets Groups Projects
Commit 334a3aa677fb authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

verify: drop unnecessary check for nullid

In eb914541a950 (verify: filter messages about missing null manifests
(issue2900), 2011-07-13), we started ignoring nullid in the list of
manifest nodeids to check. Then, in b32a30da608d (verify: do not choke
on valid changelog without manifest, 2012-08-21), we stopped adding
nullid to the list to start with. So let's drop the left-over check
now.
parent 06205989264b
No related merge requests found
......@@ -235,8 +235,6 @@
if self.havemf:
for c, m in sorted([(c, m) for m in mflinkrevs
for c in mflinkrevs[m]]):
if m == nullid:
continue
self.err(c, _("changeset refers to unknown manifest %s") %
short(m))
......
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