From 33570454e3ab8db5d12abbfdad4563c1a8207660 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 2 Sep 2005 18:42:36 +0000 Subject: [PATCH] Fixed #448 -- Fixed bug in docs/forms.txt. Thanks, Hugo git-svn-id: http://code.djangoproject.com/svn/django/trunk@610 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/forms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/forms.txt b/docs/forms.txt index e3a98feb32..c93db95bcd 100644 --- a/docs/forms.txt +++ b/docs/forms.txt @@ -396,7 +396,7 @@ for a "contact" form on a website:: self.fields = ( formfields.EmailField(field_name="from", is_required=True), formfields.TextField(field_name="subject", length=30, maxlength=200, is_required=True), - formfields.IntegerField(field_name="urgency", choices=urgency_choices), + formfields.SelectField(field_name="urgency", choices=urgency_choices), formfields.LargeTextField(field_name="contents", is_required=True), )