Skip to content

Commit

Permalink
update wtforms imports
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Dec 11, 2013
1 parent c0951c3 commit a376666
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/forms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from flask.ext.wtf import Form, TextField, BooleanField, TextAreaField
from flask.ext.wtf import Required, Length
from flask.ext.wtf import Form
from wtforms import TextField, BooleanField, TextAreaField
from wtforms.validators import Required, Length
from flask.ext.babel import gettext
from app.models import User

Expand Down Expand Up @@ -34,3 +35,4 @@ class PostForm(Form):

class SearchForm(Form):
search = TextField('search', validators = [Required()])

0 comments on commit a376666

Please sign in to comment.