Details of an abort(403, ...) always end up as 'FORBIDDEN'

2009-01-22 Thread Christoph Haas
Dear list, I'm currently customizing the error messages in a Pylons project. And it seems like whenever I abort(403, 'foobar') my error template the request.params['message'] jusr contains 'FORBIDDEN' although I sent 'foobar' as the 'details' parameter. Grepping through the code it comes from

Re: Details of an abort(403, ...) always end up as 'FORBIDDEN'

2009-01-22 Thread Christoph Haas
On Donnerstag, 22. Januar 2009, John_Nowlan wrote: Don't know if its relevant but have you seen: http://wiki.pylonshq.com/display/pylonsdocs/Error+Documents Yes, thanks. That's what I usually use. Just that the details argument doesn't make it through to the resulting error page. Cheers