Commit 66594bea authored by Gabriel Hurley's avatar Gabriel Hurley
Browse files

Fixed #15657 -- added the required `form` parameter to the method signatures...

Fixed #15657 -- added the required `form` parameter to the method signatures of `form_valid` and `form_invalid` in the `FormMixin` docs. Thanks to jnns for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15895 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent a4ef094b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -442,11 +442,11 @@ FormMixin
        Determine the URL to redirect to when the form is successfully
        validated. Returns :attr:`.success_url` by default.

    .. method:: form_valid()
    .. method:: form_valid(form)

        Redirects to :meth:`.get_success_url`.

    .. method:: form_invalid()
    .. method:: form_invalid(form)

        Renders a response, providing the invalid form as context.