2011/12/15 Barry <barer...@googlemail.com>:
> 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 webpy@googlegroups.com.
To unsubscribe from this group, send email to 
webpy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/webpy?hl=en.

Reply via email to