make help ticket input big enough for an ssh key lol

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

View File

@ -14,7 +14,7 @@ throttle_submission = throttler(submission_throttle)
def validate_issue_text(text): def validate_issue_text(text):
if len(text) == 0: if len(text) == 0:
raise ValidationError('please describe yr issue') raise ValidationError('please describe yr issue')
if len(text) > 500: if len(text) > 5000:
raise ValidationError('too long') raise ValidationError('too long')