From ed8814b24a18cecdeb2631281bceb2f8432a2546 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Wed, 20 Nov 2013 10:49:08 +0100 Subject: [PATCH] Fixed #21468 -- 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. --- docs/topics/forms/modelforms.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index b032366fd0..9fb5c1c0cb 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -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() -`) 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::