From a57d2cd318d57f3f3a1cf29507a399353a6f650e Mon Sep 17 00:00:00 2001 From: vzarskus <60877312+vzarskus@users.noreply.github.com> Date: Mon, 10 Feb 2020 12:36:28 +0200 Subject: [PATCH] Update constants.py The import "from werkzeug import ImmutableDict" is deprecated. --- flask_babelplus/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_babelplus/constants.py b/flask_babelplus/constants.py index e9fb9ad..a9a1d6c 100644 --- a/flask_babelplus/constants.py +++ b/flask_babelplus/constants.py @@ -9,7 +9,7 @@ :copyright: (c) 2013 by Armin Ronacher, Daniel Neuhäuser and contributors. :license: BSD, see LICENSE for more details. """ -from werkzeug import ImmutableDict +from werkzeug.datastructures import ImmutableDict DEFAULT_LOCALE = "en" DEFAULT_TIMEZONE = "UTC"