summaryrefslogtreecommitdiff
path: root/docs/forms.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-09-02 18:42:36 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-09-02 18:42:36 +0000
commit33570454e3ab8db5d12abbfdad4563c1a8207660 (patch)
tree0d913f57abbfb2b018e20baffdda5f80b8b089b4 /docs/forms.txt
parent3aa1276bff404a32bd54312d2d7bf5cdcfd8f71c (diff)
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
Diffstat (limited to 'docs/forms.txt')
-rw-r--r--docs/forms.txt2
1 files changed, 1 insertions, 1 deletions
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),
)