On Mon, Jun 4, 2012 at 4:26 AM, Greg Whittier <[email protected]> wrote:
> I get
>
> AttributeError: 'Registry' object has no attribute 'zodb_database'

I think this is caused by the Named Database change in pyramid_zodbconn 0.3.

You could either change the test line to:

self.db = app.registry._zodb_databases['']

or pin down pyramid_zodbconn in setup.py:

requires = [
    ...
    'pyramid_zodbconn<0.3',
    ...
    ]

HTH.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" 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/pylons-discuss?hl=en.

Reply via email to