make help ticket input big enough for an ssh key lol

This commit is contained in:
nathaniel smith 2017-05-20 13:11:27 -07:00
parent be8011bb49
commit 957653b9de

View File

@ -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')