[google-appengine] Re: Handler problem

2009-09-28 Thread quano
How I wonder where that second slash came from. You are correct. On Sep 28, 3:50 pm, Wooble wrote: > On Sep 28, 8:40 am, quano wrote: > > > Ah, my bad. > > > Apparently the script was running but wasn't printing anything because > > of this: > > &g

[google-appengine] Re: Handler problem

2009-09-28 Thread quano
Ah, my bad. Apparently the script was running but wasn't printing anything because of this: application = webapp.WSGIApplication([('/', MainHandler)], It only runs for '/'. Switch that to '/.*/' and it'll run the get in MainHandler. On Sep 27, 12:44

[google-appengine] Re: Handler problem

2009-09-26 Thread quano
It's a simple hello world script. Hello world isn't being printed. On Sep 26, 4:58 pm, Wooble wrote: > Is main.py correctly handling all of the URLs you're sending to it? > What makes you think it's not running? > > On Sep 26, 7:18 am, Kenchu wrote: > > > Maybe this has been asked already, but