[Zope] standard_error_message in Python Product

Dieter Maurer dieter@handshake.de
Mon, 25 Nov 2002 19:32:03 +0100


Thomas Guettler writes:
 > Is it possible to write a standard_error_message as a method in a
 > python product?
 > 
 > "def standard_error_message(self, **kwargs)"
Try:
    def standard_error_message(self, client=None, REQUEST=None, **kwargs):


Dieter