summaryrefslogtreecommitdiff
path: root/tests/admin_custom_urls/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_custom_urls/models.py')
-rw-r--r--tests/admin_custom_urls/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/admin_custom_urls/models.py b/tests/admin_custom_urls/models.py
index 1fc30ec18c..8b91383b0f 100644
--- a/tests/admin_custom_urls/models.py
+++ b/tests/admin_custom_urls/models.py
@@ -33,7 +33,7 @@ class ActionAdmin(admin.ModelAdmin):
def get_urls(self):
# Add the URL of our custom 'add_view' view to the front of the URLs
# list. Remove the existing one(s) first
- from django.conf.urls import url
+ from django.urls import re_path
def wrap(view):
def wrapper(*args, **kwargs):
@@ -45,7 +45,7 @@ class ActionAdmin(admin.ModelAdmin):
view_name = '%s_%s_add' % info
return [
- url(r'^!add/$', wrap(self.add_view), name=view_name),
+ re_path('^!add/$', wrap(self.add_view), name=view_name),
] + self.remove_url(view_name)