Skip to content

Commit

Permalink
Fixed #448 -- Fixed bug in docs/forms.txt. Thanks, Hugo
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@610 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Sep 2, 2005
1 parent 3aa1276 commit 3357045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/forms.txt
Expand Up @@ -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),
)

Expand Down

0 comments on commit 3357045

Please sign in to comment.