[Zope-Checkins] CVS: Zope/lib/python/OFS - PropertySheets.py:1.87.6.2
Christian Theune
ct@gocept.com
Sat, 14 Jun 2003 12:09:54 -0400
Update of /cvs-repository/Zope/lib/python/OFS
In directory cvs.zope.org:/tmp/cvs-serv11146/lib/python/OFS
Modified Files:
Tag: Zope-2_6-branch
PropertySheets.py
Log Message:
- checked in the fix for #882 which i resolved in the collector
some time ago, but forgot to check in. Sorry.
=== Zope/lib/python/OFS/PropertySheets.py 1.87.6.1 => 1.87.6.2 ===
--- Zope/lib/python/OFS/PropertySheets.py:1.87.6.1 Wed Oct 16 17:34:36 2002
+++ Zope/lib/python/OFS/PropertySheets.py Sat Jun 14 12:09:53 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__())