Commit 085c04fd authored by Tres Seaver's avatar Tres Seaver

fsrefs.py was reporting spurious 'missing' classes.

parent c59d85ea
...@@ -129,11 +129,8 @@ def main(path): ...@@ -129,11 +129,8 @@ def main(path):
data, serial = fs.load(oid, "") data, serial = fs.load(oid, "")
refs = get_refs(data) refs = get_refs(data)
missing = [] # contains 3-tuples of oid, klass-metadata, reason missing = [] # contains 3-tuples of oid, klass-metadata, reason
for info in refs: for ref, klass in refs:
ref, klass = info
if klass is None: if klass is None:
# failed to unpack
ref = info
klass = '<unknown>' klass = '<unknown>'
if ref not in fs._index: if ref not in fs._index:
missing.append((ref, klass, "missing")) missing.append((ref, klass, "missing"))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment