From 2b8cdb8ab53663ae274e7a8cc4c84397d2523d1a Mon Sep 17 00:00:00 2001 From: Henry Mehta Date: Tue, 17 May 2022 10:05:18 +0100 Subject: [PATCH] ugettext_lazy to gettext_lazy --- pinax/templates/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinax/templates/apps.py b/pinax/templates/apps.py index d09a208..4ccc47a 100644 --- a/pinax/templates/apps.py +++ b/pinax/templates/apps.py @@ -1,5 +1,5 @@ from django.apps import AppConfig as BaseAppConfig -from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import gettext_lazy as _ class AppConfig(BaseAppConfig):