[Zope] Re: Problem Augmented assignment

julian jules12af at aol.com
Fri Jun 8 08:56:39 EDT 2007


I have resolve my problem. It's very odd. It's the place of the operator...

query &= Eq('portal_type', 'J_Product')
query &= Eq('review_state', 'published')

I replace this by :

query = query  & Eq('portal_type', 'J_Product')
query = query  & Eq('review_state', 'published')

It's work :)



More information about the Zope mailing list