Ticket #17182: 17182.diff

File 17182.diff, 737 bytes (added by Simon Meers, 13 years ago)
  • docs/ref/forms/validation.txt

    diff -r 6657b3f20428 docs/ref/forms/validation.txt
    a b  
    300300        ...
    301301
    302302        def clean(self):
    303             cleaned_data = self.cleaned_data
     303            cleaned_data = super(ContactForm, self).clean()
    304304            cc_myself = cleaned_data.get("cc_myself")
    305305            subject = cleaned_data.get("subject")
    306306
     
    329329        ...
    330330
    331331        def clean(self):
    332             cleaned_data = self.cleaned_data
     332            cleaned_data = super(ContactForm, self).clean()
    333333            cc_myself = cleaned_data.get("cc_myself")
    334334            subject = cleaned_data.get("subject")
    335335
Back to Top