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:
Baptiste Mispelon 2013-11-20 10:49:08 +01:00
parent 2fb6dbe81d
commit ed8814b24a
1 changed files with 2 additions and 3 deletions

View File

@ -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::