> application = web.application(urls, globals()).wsgifunc() > application.notfound = notfound > > I get "not found" rather then my custom message....
You trying to add notfound attribute to wsgi function. Try this instead: app = web.application(urls, globals()) app.notfound = notfound application = app.wsgifunc() Anand --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
