diff options
author | 2019-04-05 12:11:31 +0100 | |
---|---|---|
committer | 2019-04-05 12:11:31 +0100 | |
commit | ebda74029355ce3236ca9266acde40fd40329df7 (patch) | |
tree | aba491f902c874328c88b8e7ccb9772b5414c17f /pysite/urls.py | |
parent | Set `harakiri = 30`. (diff) |
[#176] Redo project layout
Diffstat (limited to 'pysite/urls.py')
-rw-r--r-- | pysite/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/urls.py b/pysite/urls.py index e162a092..25ce2106 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('pysite.apps.home.urls', namespace='home')), ) |