From f41cf43f8049a73b115a717ee4ec9d4ccb3a760d Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 2 Jul 2018 13:34:20 +0200 Subject: [PATCH] [Bugfix] Fix for "Move from Flask-Babel to Flask-BabelEx" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I forgot to fix this in calendar_system.gregorian… --- calsocial/calendar_system/gregorian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calsocial/calendar_system/gregorian.py b/calsocial/calendar_system/gregorian.py index 8eac2c9..e857652 100644 --- a/calsocial/calendar_system/gregorian.py +++ b/calsocial/calendar_system/gregorian.py @@ -1,5 +1,5 @@ from datetime import datetime, timedelta -from flask_babel import lazy_gettext as _ +from flask_babelex import lazy_gettext as _ from . import CalendarSystem