aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/urls.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-08-13 23:35:26 +0200
committerGravatar Johannes Christ <[email protected]>2018-08-13 23:35:26 +0200
commitf72e333dc49f99436136b9c1a0a6287ceebb76b2 (patch)
tree637714d3cb5bb39072949c319f0bb21924efc467 /pysite/urls.py
parentInclude `CREATEDB` permission necessary for tests. (diff)
Namespace `home:index` URL.
Diffstat (limited to 'pysite/urls.py')
-rw-r--r--pysite/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/urls.py b/pysite/urls.py
index 0755f2ad..3e2e05e8 100644
--- a/pysite/urls.py
+++ b/pysite/urls.py
@@ -2,5 +2,5 @@ from django.urls import include, path
urlpatterns = [
- path("", include("home.urls", namespace="home"))
+ path('', include('home.urls', namespace='home'))
]