aboutsummaryrefslogtreecommitdiffstats
path: root/tests/urls.py
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-16 22:14:41 +0200
committerAymeric Augustin2013-10-17 18:24:57 +0200
commitc1f39b1a168d535e0b90d3c69273e391adf22637 (patch)
tree9ae12cb257585e4681edea253209d9c150f3731a /tests/urls.py
parent79831e4053b472921621f288483e95a961a4d142 (diff)
downloaddjango-debug-toolbar-c1f39b1a168d535e0b90d3c69273e391adf22637.tar.bz2
Remove compatibility code for unsupported version of Django.
Diffstat (limited to 'tests/urls.py')
-rw-r--r--tests/urls.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/urls.py b/tests/urls.py
index 778f417..326c61a 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -1,14 +1,12 @@
"""
-URLpatterns for the debug toolbar.
+URLpatterns for the debug toolbar.
These should not be loaded explicitly; the debug toolbar middleware will patch
this into the urlconf for the request.
"""
+
+from django.conf.urls import patterns, url
from django.contrib import admin
-try:
- from django.conf.urls import patterns, url
-except ImportError: # django < 1.4
- from django.conf.urls.defaults import patterns, url
admin.autodiscover()