From 957653b9dec38f377c8f9ce2a12185925e8d5c02 Mon Sep 17 00:00:00 2001 From: nathaniel smith Date: Sat, 20 May 2017 13:11:27 -0700 Subject: [PATCH] make help ticket input big enough for an ssh key lol --- ttadmin/help/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttadmin/help/forms.py b/ttadmin/help/forms.py index 421c790..5cc3389 100644 --- a/ttadmin/help/forms.py +++ b/ttadmin/help/forms.py @@ -14,7 +14,7 @@ throttle_submission = throttler(submission_throttle) def validate_issue_text(text): if len(text) == 0: raise ValidationError('please describe yr issue') - if len(text) > 500: + if len(text) > 5000: raise ValidationError('too long')