Hi,
The webapp framework will allow you to see the full Traceback. To
see the debug statement, you can use a main function similar to this
(setting debug=True):
def main():
application = webapp.WSGIApplication(
[('/', MainPage)],
debug=True)
wsgiref.handlers.CGIHandler().run(application)
-Marzia