From d3e86be8b28f79ca04f83d9d3455521dbf19a60c Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 3 Apr 2021 16:17:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Remove=20namespace=3D=20from=20p?= =?UTF-8?q?ath?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems like it's no longer supported --- sophon/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sophon/urls.py b/sophon/urls.py index 2b29f9e..05358c8 100644 --- a/sophon/urls.py +++ b/sophon/urls.py @@ -18,5 +18,5 @@ from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), - path('api-auth/', include("rest_framework.urls"), namespace="rest_framework") + path('api-auth/', include("rest_framework.urls")) ]