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 bf040fa commit ef983be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/forms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from flask.ext.wtf import Form, TextField, BooleanField, TextAreaField
from flask.ext.wtf import Required, Length
from app.models import User
from flask.ext.wtf import Form
from wtforms import TextField, BooleanField, TextAreaField
from wtforms.validators import Required, Length

class LoginForm(Form):
openid = TextField('openid', validators = [Required()])
Expand All @@ -27,4 +27,4 @@ def validate(self):

class PostForm(Form):
post = TextField('post', validators = [Required()])

0 comments on commit ef983be

Please sign in to comment.