aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-28 20:00:51 +0200
committerGravatar GitHub <[email protected]>2020-10-28 20:00:51 +0200
commita99135397a63da8ef1389ae8df6f5c537cf186f3 (patch)
treeb4289d3e4fc5d51da57bd14ff351ba44cae0b51e /pydis_site/apps/home
parentRemove resources index breadcrumb CSS (diff)
Remove unnecessary namespace from including resources app URLs
Co-authored-by: Jeremiah Boby <[email protected]>
Diffstat (limited to 'pydis_site/apps/home')
-rw-r--r--pydis_site/apps/home/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/home/urls.py b/pydis_site/apps/home/urls.py
index 09b5df34..7b94420c 100644
--- a/pydis_site/apps/home/urls.py
+++ b/pydis_site/apps/home/urls.py
@@ -33,5 +33,5 @@ urlpatterns = [
path('logout', LogoutView.as_view(), name="logout"),
path('admin/', admin.site.urls),
- path('resources/', include('pydis_site.apps.resources.urls', namespace="resources")),
+ path('resources/', include('pydis_site.apps.resources.urls')),
]