From 5d009d839b7778ed596d382cbd6467e45bf2c7f8 Mon Sep 17 00:00:00 2001 From: Alexandre Avenel Date: Sat, 21 Jan 2017 15:03:58 +0100 Subject: Fix deprecation issues (ExtDeprecationWarning) --- budget/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'budget/forms.py') 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 -- cgit v1.1