Qualify Person with RelLIb

svn: r1330
This commit is contained in:
Don Allingham 2003-03-07 13:16:00 +00:00
parent ebb9af71ca
commit f3b658c773

View File

@ -110,7 +110,7 @@ class PersonMap(Persistent, UserDict):
def __setitem__(self, key, value):
if not isinstance(value, PersonWrapper):
# Create the PersonWrapper.
assert isinstance(value, Person)
assert isinstance(value, RelLib.Person)
value = PersonWrapper(value, self)
self.data[key] = value