diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-18 18:41:21 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-07-21 15:07:41 +0200 |
commit | a943717c1adf586d3f59ad35608dbbf306ab45eb (patch) | |
tree | f836cb832551cd1604dff2c99a42cb59ccb8adf7 /example_project/__init__.py.celery.sample | |
parent | 3e1baf5804b27cb84c5db0121d6352d5b80a1535 (diff) | |
download | Ishtar-a943717c1adf586d3f59ad35608dbbf306ab45eb.tar.bz2 Ishtar-a943717c1adf586d3f59ad35608dbbf306ab45eb.zip |
♻️ django 3.2 deprecation: url -> re_path ; ugettext_lazy -> gettext_lazy
Diffstat (limited to 'example_project/__init__.py.celery.sample')
-rw-r--r-- | example_project/__init__.py.celery.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example_project/__init__.py.celery.sample b/example_project/__init__.py.celery.sample index 3cda63729..357afe22a 100644 --- a/example_project/__init__.py.celery.sample +++ b/example_project/__init__.py.celery.sample @@ -1,5 +1,5 @@ # force the retranslation of generated strings and external module -from django.utils.translation import ugettext_lazy as _ +from django.utils.translation import gettext_lazy as _ from .celery_app import app as celery_app |