From 94c210427fbff0fb00008333cb28112785fd7d0e Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Thu, 9 Oct 2008 09:33:35 +0000 Subject: [PATCH] [1.0.X] Fixed #9239 -- Somebody read my form validation docs from r9180 and found a typo in them. I guess that was predictable. Thanks, Berry Groenendijk Backport of r9217 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9218 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/forms/validation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index 412447b74a..af3b7f23f3 100644 --- a/docs/ref/forms/validation.txt +++ b/docs/ref/forms/validation.txt @@ -260,7 +260,7 @@ here and leaving it up to you and your designers to work out what works effectively in your particular situation. Our new code (replacing the previous sample) looks like this:: - from django.forms.utils import ErrorList + from django.forms.util import ErrorList class ContactForm(forms.Form): # Everything as before.