2009/4/27 Monty808 <[email protected]>: > > Per the docs > > 1) Added app = web.wsgifunc(web.webpyfunc(urls, globals())) > 2) I get this error... > > Traceback (most recent call last): > File "index.py", line 16, in <module> > app = web.wsgifunc(web.webpyfunc(urls, globals())) > AttributeError: 'module' object has no attribute 'wsgifunc' > > What is wronmg
I think, you need to do: application = app.wsgifunc() see: http://webpy.org/cookbook/mod_wsgi-apache http://code.google.com/p/modwsgi/wiki/IntegrationWithWebPy --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
