Kevin Howe writes:
 > for name,value in REQUEST.form.items:

Try:
        for name,value in REQUEST.form.items():

"items" is a method that must be called to return a sequence
of tuples.


Dieter

_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )

Reply via email to