Commit ed8814b2 authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Fixed #21468 -- Removed a ModelForm bit that doesn't apply to 1.5.x.

The bit was incorrectly backported with 3860d5e8.

Thanks to trac user direx for the report and to Loic Bistuer
for his help.
parent 2fb6dbe8
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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::