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