From 3cdfc71fe7c08c7ba42e288a33241af185bf0d3c Mon Sep 17 00:00:00 2001 From: Brian Moe <brian.moe@ligo.org> Date: Wed, 30 Nov 2011 16:21:26 -0600 Subject: [PATCH] Django 1.1 to 1.3 mods --- urls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/urls.py b/urls.py index fea04f409..ee0b85a3c 100644 --- a/urls.py +++ b/urls.py @@ -37,7 +37,6 @@ urlpatterns = patterns('', # to INSTALLED_APPS to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - # Uncomment the next line to enable the admin: - (r'^admin/(.*)', admin.site.root), + url(r'^admin/', include(admin.site.urls)), ) -- GitLab