update wtforms imports

This commit is contained in:
Miguel Grinberg 2013-12-10 21:36:30 -08:00
parent e0f4770cf9
commit 6b193afe47
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
from flask.ext.wtf import Form, TextField, BooleanField, TextAreaField from flask.ext.wtf import Form
from flask.ext.wtf import Required, Length from wtforms import TextField, BooleanField, TextAreaField
from wtforms.validators import Required, Length
from flask.ext.babel import gettext from flask.ext.babel import gettext
from app.models import User from app.models import User