Skip to content

Commit b357518

Browse files
authored
Merge pull request #170 from sopython/kms70847-patch-1
Don't strip whitespace.
2 parents 860e8c4 + b654e1c commit b357518

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

sopy/spoiler/forms.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from flask_wtf import Form
2+
from wtforms import TextAreaField
23
from wtforms.validators import InputRequired
3-
from sopy.ext.forms import StripTextAreaField
4-
54

65
class SpoilerForm(Form):
7-
message = StripTextAreaField(validators=[InputRequired()])
6+
message = TextAreaField(validators=[InputRequired()])

0 commit comments

Comments
 (0)