[Zope-Checkins] CVS: Zope/lib/python/OFS - PropertySheets.py:1.89
Christian Theune
ct@gocept.com
Fri, 11 Apr 2003 19:38:09 -0400
Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv20903/lib/python/OFS
Modified Files:
PropertySheets.py
Log Message:
- fixed collector issue #882
=== Zope/lib/python/OFS/PropertySheets.py 1.88 => 1.89 ===
--- Zope/lib/python/OFS/PropertySheets.py:1.88 Wed Oct 16 17:14:41 2002
+++ Zope/lib/python/OFS/PropertySheets.py Fri Apr 11 19:38:08 2003
@@ -656,7 +656,7 @@
for propset in self.aq_parent.__propsets__:
if propset.getId() != name and propset.xml_namespace() != name:
result.append(propset)
- self.parent.__propsets__=tuple(result)
+ self.aq_parent.__propsets__=tuple(result)
def __len__(self):
return len(self.__propsets__())