Projet

Général

Profil

0001-django4-replaced-ugettext-calls-with-corresponding-g.patch

A. Berriot, 31 août 2022 09:10

Télécharger (712 octets)

Voir les différences:

Subject: [PATCH] django4: replaced ugettext* calls with corresponding gettext*
 calls (#68187)

 eopayment/common.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
eopayment/common.py
28 28

  
29 29
try:
30 30
    if 'django' in sys.modules:
31
        from django.utils.translation import ugettext_lazy as _
31
        from django.utils.translation import gettext_lazy as _
32 32
except ImportError:
33 33
    pass
34 34

  
35
-