aboutsummaryrefslogtreecommitdiff
path: root/budget/forms.py
diff options
context:
space:
mode:
authorAlexandre Avenel <avenel.alexandre@gmail.com>2017-01-21 15:03:58 +0100
committerAlexandre Avenel <avenel.alexandre@gmail.com>2017-01-21 15:03:58 +0100
commit5d009d839b7778ed596d382cbd6467e45bf2c7f8 (patch)
tree76a1b28b7333f5a77437b889f453da7c81a850e5 /budget/forms.py
parent67331dcf2ac0020d76f9f084aea45aacf4ba2410 (diff)
downloadihatemoney-mirror-5d009d839b7778ed596d382cbd6467e45bf2c7f8.zip
ihatemoney-mirror-5d009d839b7778ed596d382cbd6467e45bf2c7f8.tar.gz
ihatemoney-mirror-5d009d839b7778ed596d382cbd6467e45bf2c7f8.tar.bz2
Fix deprecation issues (ExtDeprecationWarning)
Diffstat (limited to 'budget/forms.py')
-rw-r--r--budget/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/budget/forms.py b/budget/forms.py
index 4b59a36..77a5ec2 100644
--- a/budget/forms.py
+++ b/budget/forms.py
@@ -1,7 +1,7 @@
-from flask.ext.wtf import DateField, DecimalField, Email, Form, PasswordField, \
+from flask_wtf import DateField, DecimalField, Email, Form, PasswordField, \
Required, SelectField, SelectMultipleField, SubmitField, TextAreaField, \
TextField, ValidationError
-from flask.ext.babel import lazy_gettext as _
+from flask_babel import lazy_gettext as _
from flask import request
from wtforms.widgets import html_params