1
0
mirror of https://github.com/django/django.git synced 2025-04-17 22:04:38 +00:00

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

The bit was incorrectly backported with 3860d5e8f814e26baf4deee9258392cd34a4b456.

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

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