[Zope] Re: accessing folder property

Chris Withers chrisw@nipltd.com
Thu, 09 Jan 2003 18:15:57 +0000


Maik Jablonski wrote:
> you could use something like:
> 
> if hasattr(self, 'propertyid'):
>    ... property exists in one of the parents...

hmmm, this is probably betterL

if self.hasProperty('propertyid'):
    ...property exists on self

cheers,

Chris