RE: [Zope3-Users] store persistent objects

2006-06-21 Thread Leticia Larrosa
Hi all To fix the error I must change the __init__ of the BTreeContainer class to the follow: class persistent_test(BTreeContainer): implements(Ipersistent_test) def __init__(self): BTreeContainer.__init__(self) self['un_padre'] = Padre('Lety','Campanilla') Any idea

Re: [Zope3-Users] store persistent objects

2006-06-21 Thread Alek Kowalczyk
Leticia Larrosa wrote: Hi all To fix the error I must change the __init__ of the BTreeContainer class to the follow: class persistent_test(BTreeContainer): implements(Ipersistent_test) def __init__(self): BTreeContainer.__init__(self) self['un_padre'] =