I hope I am posting this in the right place.

I recently wrote a script that automates installation of LodgeIt (the code 
is 
here<http://bazaar.launchpad.net/%7Echarmers/charms/oneiric/lodgeit/trunk/files>).
 
After checking out the source code for LodgeIt (from 
here<http://dev.pocoo.org/hg/lodgeit-main>), 
I discovered a bug in the file 'manage.py'. Line 6 currently reads:

from werkzeug.utils import create_environ, run_wsgi_app


Instead it should read:

from werkzeug import create_environ, run_wsgi_app


Apparently 'create_environ' and 'run_wsgi_app' are no longer a part of the 
'werkzeug.utils' module and now reside in 'werkzeug'.

-- 
You received this message because you are subscribed to the Google Groups 
"pocoo-libs" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/pocoo-libs/-/MhL4vkkP5v0J.
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/pocoo-libs?hl=en.

Reply via email to