[PATCH 04/19] urls: Don't "include" admin URLs
Stephen Finucane
stephen at that.guru
Thu May 11 05:45:13 AEST 2017
This raises a warning in Django 1.9 and will cause an error in Django
2.0. Per the documentation [1] it is not even necessary so it can simply
be removed.
This resolves all issues with Django 1.9.
[1] https://docs.djangoproject.com/en/1.11/ref/contrib/admin/\
#hooking-adminsite-instances-into-your-urlconf
Signed-off-by: Stephen Finucane <stephen at that.guru>
---
patchwork/urls.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/patchwork/urls.py b/patchwork/urls.py
index f700f38..1871c9a 100644
--- a/patchwork/urls.py
+++ b/patchwork/urls.py
@@ -40,7 +40,7 @@ from patchwork.views import xmlrpc as xmlrpc_views
admin.autodiscover()
urlpatterns = [
- url(r'^admin/', include(admin.site.urls)),
+ url(r'^admin/', admin.site.urls),
url(r'^$', project_views.project_list, name='project-list'),
url(r'^project/(?P<project_id>[^/]+)/list/$', patch_views.patch_list,
--
2.9.3
More information about the Patchwork
mailing list