From 76252be8af67d74b5e6b540262af7ee3c54235b3 Mon Sep 17 00:00:00 2001 From: Agate Berriot Date: Wed, 31 Aug 2022 08:59:41 +0200 Subject: [PATCH] django4: replaced ugettext* calls with corresponding gettext* calls (#68187) --- eopayment/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopayment/common.py b/eopayment/common.py index 7ae4790..bb24712 100644 --- a/eopayment/common.py +++ b/eopayment/common.py @@ -28,7 +28,7 @@ import six try: if 'django' in sys.modules: - from django.utils.translation import ugettext_lazy as _ + from django.utils.translation import gettext_lazy as _ except ImportError: pass -- 2.37.2