# HG changeset patch # User Ralph Meijer # Date 1099838822 0 # Node ID 1f7b8b6b8ce9a735cbec17fca432240157d3ba44 # Parent 0e642e5b4fb290558ef24099148e26d788a39a33 Enable AffiliationsService for memory backend, too. diff -r 0e642e5b4fb2 -r 1f7b8b6b8ce9 idavoll/idavoll.py --- a/idavoll/idavoll.py Sun Nov 07 14:46:35 2004 +0000 +++ b/idavoll/idavoll.py Sun Nov 07 14:47:02 2004 +0000 @@ -143,10 +143,9 @@ bsc.setServiceParent(bs) component.IService(bsc).setServiceParent(sm) - if config['backend'] == 'pgsql': - bsc = b.AffiliationsService() - bsc.setServiceParent(bs) - component.IService(bsc).setServiceParent(sm) + bsc = b.AffiliationsService() + bsc.setServiceParent(bs) + component.IService(bsc).setServiceParent(sm) s = IdavollService() s.setServiceParent(sm)