2011/12/15 Barry <[email protected]>:
> Hi Anand.
>
> Yeah, I've added application.run() but still the same result.
Try this:
app = web.application(urls, globals())
application = app.wsgifunc()
if __name__ == "__main__":
app.run()
web.py application object has run method. You are trying to call run
on wsgi function.
Anand
--
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.