diff -r 6657b3f20428 docs/ref/forms/validation.txt
a
|
b
|
|
300 | 300 | ... |
301 | 301 | |
302 | 302 | def clean(self): |
303 | | cleaned_data = self.cleaned_data |
| 303 | cleaned_data = super(ContactForm, self).clean() |
304 | 304 | cc_myself = cleaned_data.get("cc_myself") |
305 | 305 | subject = cleaned_data.get("subject") |
306 | 306 | |
… |
… |
|
329 | 329 | ... |
330 | 330 | |
331 | 331 | def clean(self): |
332 | | cleaned_data = self.cleaned_data |
| 332 | cleaned_data = super(ContactForm, self).clean() |
333 | 333 | cc_myself = cleaned_data.get("cc_myself") |
334 | 334 | subject = cleaned_data.get("subject") |
335 | 335 | |