aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-09-15 11:15:23 +0200
committerMatěj Cepl <mcepl@cepl.eu>2023-09-15 12:32:02 +0200
commit312665c9bf6c8dadc6ed1eb37a9b05d852b4d42d (patch)
treeda6cd6f01e960aceee424031b80b9ac770d4fae9
parent0adc5528b928c9a256518a190da7fff12669e2a9 (diff)
downloadjustice-312665c9bf6c8dadc6ed1eb37a9b05d852b4d42d.tar.gz
Make the app compatible with WTForms >= 3.0
-rw-r--r--forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms.py b/forms.py
index d8f588b..15df7a8 100644
--- a/forms.py
+++ b/forms.py
@@ -7,7 +7,7 @@ Created on Sun Jan 17 10:05:34 2021
"""
from wtforms import Form, StringField, SelectField, BooleanField
-from wtforms.fields.html5 import DateField
+from wtforms.fields import DateField
# CREATE A GENERAL CLASS TO REMOVE DUPLICITIES?