Try this, not tested but it might work. class ProfileForm(forms.ModelForm): def __init__(self, *args, **kwargs): self.error_class = DivErrorList super(ProfileForm, self).__init__(*args, **kwargs)
class Meta: model = P exclude = ('date', 'user', 'public') When you override a class method you need to make sure to call super inside it. This calls the classes parent method. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---