Fixed #21468 -- Removed a ModelForm bit that doesn't apply to 1.5.x.
The bit was incorrectly backported with 3860d5e8f8
.
Thanks to trac user direx for the report and to Loic Bistuer
for his help.
This commit is contained in:
parent
2fb6dbe81d
commit
ed8814b24a
|
@ -205,9 +205,8 @@ when calling :meth:`~django.forms.Form.is_valid()` or accessing the
|
|||
``full_clean()``, although you will typically not use the latter method in
|
||||
practice.
|
||||
|
||||
``Model`` validation (:meth:`Model.full_clean()
|
||||
<django.db.models.Model.full_clean()>`) is triggered from within the form
|
||||
validation step, right after the form's ``clean()`` method is called.
|
||||
``Model`` validation is triggered from within the form validation step,
|
||||
right after the form's ``clean()`` method is called.
|
||||
|
||||
.. warning::
|
||||
|
||||
|
|
Loading…
Reference in New Issue