summaryrefslogtreecommitdiff
path: root/tests/admin_custom_urls
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-16 12:52:05 -0400
committerTim Graham <timograham@gmail.com>2013-09-16 12:52:05 -0400
commit18ffdb1772ba60e085cff8fd9a1d4a7b129b4032 (patch)
tree69ea529302e5c498e6b020b03c30e2ccf4a21936 /tests/admin_custom_urls
parent8d29005524b141da8ff4d9b9bc4d858d43bb7154 (diff)
Fixed #17627 -- Renamed util.py files to utils.py
Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor KoƂodziej for the initial patch.
Diffstat (limited to 'tests/admin_custom_urls')
-rw-r--r--tests/admin_custom_urls/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_custom_urls/tests.py b/tests/admin_custom_urls/tests.py
index 257638afb1..1dc9da7efd 100644
--- a/tests/admin_custom_urls/tests.py
+++ b/tests/admin_custom_urls/tests.py
@@ -1,7 +1,7 @@
from __future__ import unicode_literals
import warnings
-from django.contrib.admin.util import quote
+from django.contrib.admin.utils import quote
from django.core.urlresolvers import reverse
from django.template.response import TemplateResponse
from django.test import TestCase