Ticket #14493: typo.patch

File typo.patch, 590 bytes (added by Greg Wogan-Browne, 14 years ago)
  • docs/ref/models/instances.txt

     
    7070    try:
    7171        article.full_clean()
    7272    except ValidationError, e:
    73         # Do something based on the errors contained in e.error_dict.
     73        # Do something based on the errors contained in e.message_dict.
    7474        # Display them to a user, or handle them programatically.
    7575
    7676The first step ``full_clean()`` performs is to clean each individual field.
Back to Top