Fix inheritance in soc.models.base module. FieldsProxy inherited from DbModelForm which was deleted in previous commits (replace that with BaseForm).
Patch by: Pawel Solyga
--- a/app/soc/models/base.py Mon Dec 15 01:08:16 2008 +0000
+++ b/app/soc/models/base.py Mon Dec 15 01:10:32 2008 +0000
@@ -69,7 +69,7 @@
Property itself via the Model entity.
"""
if not cls._fields_cache or (cls != cls._fields_cache.__class__.Meta.model):
- class FieldsProxy(forms_helper.DbModelForm):
+ class FieldsProxy(forms_helper.BaseForm):
"""Form used as a proxy to access User model properties attributes.
"""