From 462740dd00cf473d5a84578a4e804e263d2e8e3a Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jan 13 2015 14:11:58 +0000 Subject: Fix field name in the AddIssueCommentForm form --- 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()] )