On 10/13/2010 5:17 PM, howesc wrote:
I can't comment fully on the routes changes, but the errors you are
getting are errors in presenting you with the errors.  the
error_message that you used to have at the bottom of your routes.py:

error_message = '<html><body><h1>Invalid request</h1></body></html>'

needs to be upgraded to have a %s in it somewhere, perhaps like:

error_message = '<html><body><h1>%s</h1></body></html>'

if you fix that then you will get the real error message and can debug
from there.

I commented out the error_message line (which is how it is in the routes example) and the error went away. I don't see any other errors or anything that's not working right now.

--
Andrew Thompson
http://aktzero.com/

Reply via email to