diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-15 19:03:22 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-15 19:32:59 +0200 |
commit | 31ae6562099cca5e692fdcdccf0852433d295a3a (patch) | |
tree | 365de723a1b9430e1d6f44618c52f2dd4a1abe48 /archaeological_warehouse/models.py | |
parent | f5077bcd3cea76f48a2d635385e4b85a16bf6000 (diff) | |
download | Ishtar-31ae6562099cca5e692fdcdccf0852433d295a3a.tar.bz2 Ishtar-31ae6562099cca5e692fdcdccf0852433d295a3a.zip |
♻️ django 3.2 deprecation: url -> re_path ; ugettext_lazy -> gettext_lazy
Diffstat (limited to 'archaeological_warehouse/models.py')
-rw-r--r-- | archaeological_warehouse/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index 993ab3362..e9588668c 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -29,7 +29,7 @@ from django.db.models import Q, Max from django.db.models.signals import post_save, post_delete, m2m_changed, pre_delete from django.template.defaultfilters import slugify from django.urls import reverse, reverse_lazy -from ishtar_common.utils import ugettext_lazy as _, pgettext_lazy +from ishtar_common.utils import gettext_lazy as _, pgettext_lazy from django.apps import apps from ishtar_common.data_importer import post_importer_action, pre_importer_action, \ |