On Sep 28, 8:40 am, quano <[email protected]> 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.
/.*/ will only match URLs that have 2 slashes in them. You probably
want '/.*' or even just '.*'
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" 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/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---