summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--accounts/forms.py2
-rw-r--r--accounts/views/login/forms.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/accounts/forms.py b/accounts/forms.py
index 245d0f0..2829a9a 100644
--- a/accounts/forms.py
+++ b/accounts/forms.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import re
from flask import current_app, Markup, url_for
-from flask_wtf import Form
+from flask_wtf import FlaskForm as Form
from flask_login import current_user
from wtforms import TextField, PasswordField, ValidationError, BooleanField,\
validators
diff --git a/accounts/views/login/forms.py b/accounts/views/login/forms.py
index b45ef06..f36d48c 100644
--- a/accounts/views/login/forms.py
+++ b/accounts/views/login/forms.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-from flask_wtf import Form
+from flask_wtf import FlaskForm as Form
from wtforms import TextField, PasswordField, validators