diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2011-10-29 12:24:44 +0000 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2011-10-29 12:24:44 +0000 |
| commit | 24f3c06e4aaee3370098d454dab61c175ccf8319 (patch) | |
| tree | 44ca00004d91bf146d89785b72e569b50171f901 /tests | |
| parent | 3e66913f967e01295d86a86b981e3f54fbda29a5 (diff) | |
More django.conf.urls.defaults removals. Refs #17132
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/admin_custom_urls/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_custom_urls/models.py b/tests/regressiontests/admin_custom_urls/models.py index f8c83a9024..facb4b52e7 100644 --- a/tests/regressiontests/admin_custom_urls/models.py +++ b/tests/regressiontests/admin_custom_urls/models.py @@ -31,7 +31,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.defaults import patterns, url + from django.conf.urls import patterns, url def wrap(view): def wrapper(*args, **kwargs): |
