Commit 6036f96a authored by Tim Peters's avatar Tim Peters

report(): changed the NOT_SEEN msg.

It's possible that an oid is referenced despite never being
defined (well, it's not *supposed* to be possible ...).
parent ad474ab7
......@@ -92,7 +92,7 @@ class Tracer(object):
oid2name = self.oid2name
# First determine which oids weren't seen at all, and synthesize msgs
# for them.
NOT_SEEN = "this oid was neither defined nor referenced"
NOT_SEEN = "this oid was not defined (no data record for it found)"
for oid in oids:
if oid not in oid2name:
msgs.append( (oid, None, NOT_SEEN) )
......
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