django4: replaced ugettext* calls with corresponding gettext* calls (#68187)

This commit is contained in:
Agate 2022-08-31 08:59:41 +02:00
parent 7b73275f70
commit 76252be8af
1 changed files with 1 additions and 1 deletions

View File

@ -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