[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/FileStorage/fsoids.py
report(): changed the NOT_SEEN msg.
Tim Peters
tim.one at comcast.net
Wed Aug 25 10:01:54 EDT 2004
Log message for revision 27258:
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 ...).
Changed:
U ZODB/trunk/src/ZODB/FileStorage/fsoids.py
-=-
Modified: ZODB/trunk/src/ZODB/FileStorage/fsoids.py
===================================================================
--- ZODB/trunk/src/ZODB/FileStorage/fsoids.py 2004-08-25 04:45:57 UTC (rev 27257)
+++ ZODB/trunk/src/ZODB/FileStorage/fsoids.py 2004-08-25 14:01:53 UTC (rev 27258)
@@ -92,7 +92,7 @@
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) )
More information about the Zodb-checkins
mailing list