aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/urls.py')
-rw-r--r--pysite/urls.py6
1 files changed, 3 insertions, 3 deletions
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')),
+)