Commit fc33b8e9 authored by Karen Tracey's avatar Karen Tracey
Browse files

Fixed #13778: Removed a stray colon in a code example. Thanks canassa.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@13355 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent ab908685
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ of to a specific field. You can access these errors with ``NON_FIELD_ERRORS``::

    from django.core.validators import ValidationError, NON_FIELD_ERRORS
    try:
        article.full_clean():
        article.full_clean()
    except ValidationError, e:
        non_field_errors = e.message_dict[NON_FIELD_ERRORS]