diff --git a/progit/forms.py b/progit/forms.py index e7a70c5..4d173b7 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -62,7 +62,7 @@ class RequestPullForm(wtf.Form): class AddIssueCommentForm(wtf.Form): ''' Form to add a comment to an issue. ''' - t = wtforms.TextAreaField( + comment = wtforms.TextAreaField( 'Comment*', [wtforms.validators.Required()] )