From b3f92197df9895a61737a1438ccf44bf62718ab4 Mon Sep 17 00:00:00 2001 From: nathaniel smith Date: Sat, 20 May 2017 13:17:54 -0700 Subject: [PATCH] remove limit warning --- ttadmin/help/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ttadmin/help/forms.py b/ttadmin/help/forms.py index 5cc3389..42b39fa 100644 --- a/ttadmin/help/forms.py +++ b/ttadmin/help/forms.py @@ -29,12 +29,12 @@ class TicketForm(Form): issue_type = ChoiceField( choices=ISSUE_TYPE_CHOICES, 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( widget=Textarea, label="what's up?", - help_text='describe your issue (in 500 characters or less)', + help_text='describe your issue.', validators=(validate_issue_text,), ) captcha = CaptchaField()