# HG changeset patch # User Lennard de Rijk # Date 1233417862 0 # Node ID 5785d9af5c5d67795bba2eba660f45f6cfe9ebc6 # Parent 5a9d4c2d67487ca1017107e64e41b9d9e0541d10 Fixed a bug in role.py that made it call the wrong superclass. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r 5a9d4c2d6748 -r 5785d9af5c5d app/soc/logic/models/role.py --- a/app/soc/logic/models/role.py Sat Jan 31 16:03:14 2009 +0000 +++ b/app/soc/logic/models/role.py Sat Jan 31 16:04:22 2009 +0000 @@ -81,7 +81,7 @@ if entity.status == 'active': sidebar.flush(entity.user.account) - super(View, self)._onCreate(entity) + super(Logic, self)._onCreate(entity) logic = Logic()