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:
>
> > application = webapp.WSGIApplication([('/', M
On Sep 28, 8:40 am, quano wrote:
> 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.
/.*/ wil
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 am, quano wrote:
> It's a simple hello wo
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
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 shouldn't handlers url: .* math
> all urls? Because currently I'm using this:
>
> handlers:
> - url: .*
> script