I've run into a problem deploying a web.py app.

On the test server (has been running 0.23 for a few months):

>>> import web
>>> web.__version__
'0.23'
>>> 'render' in dir(web)
True

And I recently installed 0.23 on the production server and get this:

>>> import web
>>> web.__version__
'0.23'
>>> 'render' in dir(web)
False

obviously this breaks alot of code and we specifically did not choose
to upgrade web.py so that our old code base would be compatible. What
gives? Are there different versions of version 0.23 ? Some config
issue?

--matt
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to