Opened 16 years ago
Closed 16 years ago
#9329 closed (fixed)
Documentation bug for form validation
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Uncategorized | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
See url: http://docs.djangoproject.com/en/dev/ref/forms/validation/
The last codeblock contains an example for form validation. The first code line
from django.forms.utils import ErrorList
is incorrect. It should be:
from django.forms.util import ErrorList
Utils should be util.
Note:
See TracTickets
for help on using tickets.
Fixed in r9217, although I made a typo in the commit message about the bug number.