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 <[email protected]> --- 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 _______________________________________________ Patchwork mailing list [email protected] https://lists.ozlabs.org/listinfo/patchwork
