aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/staff/urls.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-07 16:10:17 +0300
committerGravatar GitHub <[email protected]>2020-10-07 16:10:17 +0300
commit469bbb9da632e8dfe787b7a446bfacfd55b5c5ad (patch)
treeea8abddca51e42ebdf6422b4b72baa307d658cfd /pydis_site/apps/staff/urls.py
parentUpdate guides URL to match with latest changes in #393 (diff)
parentMerge pull request #405 from python-discord/remove_django_wiki (diff)
Merge branch 'dewikification' into resources-home
Diffstat (limited to 'pydis_site/apps/staff/urls.py')
-rw-r--r--pydis_site/apps/staff/urls.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pydis_site/apps/staff/urls.py b/pydis_site/apps/staff/urls.py
index a564d516..ca8d1a0f 100644
--- a/pydis_site/apps/staff/urls.py
+++ b/pydis_site/apps/staff/urls.py
@@ -1,5 +1,3 @@
-from django.conf import settings
-from django.conf.urls.static import static
from django.urls import path
from .viewsets import LogView
@@ -7,4 +5,4 @@ from .viewsets import LogView
app_name = 'staff'
urlpatterns = [
path('bot/logs/<int:pk>/', LogView.as_view(), name="logs"),
-] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
+]