diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-09-01 17:58:56 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:20:58 +0100 |
commit | eec69099f0c6dfdcef5acc15d57dadc7cd04813b (patch) | |
tree | aa16f6f20916eecc7a99d9eed661d8bd1ddf9522 /archaeological_operations/wizards.py | |
parent | 12ee58b40c9ac73ee42ab08a18246399485adb9a (diff) | |
download | Ishtar-eec69099f0c6dfdcef5acc15d57dadc7cd04813b.tar.bz2 Ishtar-eec69099f0c6dfdcef5acc15d57dadc7cd04813b.zip |
Migration to Django 2.2 - missing on_delete - django.urls import reverse
Diffstat (limited to 'archaeological_operations/wizards.py')
-rw-r--r-- | archaeological_operations/wizards.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/wizards.py b/archaeological_operations/wizards.py index a58e7437d..7afe73442 100644 --- a/archaeological_operations/wizards.py +++ b/archaeological_operations/wizards.py @@ -21,9 +21,9 @@ import logging from django.conf import settings from django.core.exceptions import ObjectDoesNotExist -from django.core.urlresolvers import reverse from django.http import Http404 from django.shortcuts import render +from django.urls import reverse from ishtar_common.utils import ugettext_lazy as _ from archaeological_files.models import File |