From 6aca3c625702dbca98e945806a02636868c25ec8 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Sat, 8 Sep 2018 00:05:43 +0200 Subject: Add the `admin` subdomain with the Django Admin. --- pysite/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pysite/urls.py') diff --git a/pysite/urls.py b/pysite/urls.py index 3e2e05e8..e162a092 100644 --- a/pysite/urls.py +++ b/pysite/urls.py @@ -1,6 +1,6 @@ from django.urls import include, path -urlpatterns = [ - path('', include('home.urls', namespace='home')) -] +urlpatterns = ( + path('', include('home.urls', namespace='home')), +) -- cgit v1.2.3