> import google.appengine.ext.utils > main = > google.appengine.ext.utils.run_wsgi_app(web.wsgifunc(web.webpyfunc(urls, > globals()))
The above didn't work for me, but this did: import google.appengine.ext.webapp.util main = google.appengine.ext.webapp.util.run_wsgi_app(web.wsgifunc(web.webpyfunc(urls,globals()))) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
