remove limit warning

pull/27/head
nathaniel smith 2017-05-20 13:17:54 -07:00
parent 957653b9de
commit b3f92197df
1 changed files with 2 additions and 2 deletions

View File

@ -29,12 +29,12 @@ class TicketForm(Form):
issue_type = ChoiceField( issue_type = ChoiceField(
choices=ISSUE_TYPE_CHOICES, choices=ISSUE_TYPE_CHOICES,
label='type of issue', label='type of issue',
help_text='the type of issue that best describes your problem' help_text='the type of issue that best describes your problem.'
) )
issue_text = CharField( issue_text = CharField(
widget=Textarea, widget=Textarea,
label="what's up?", label="what's up?",
help_text='describe your issue (in 500 characters or less)', help_text='describe your issue.',
validators=(validate_issue_text,), validators=(validate_issue_text,),
) )
captcha = CaptchaField() captcha = CaptchaField()