aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/staff/urls.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-05-14 17:46:00 +0100
committerGravatar GitHub <[email protected]>2021-05-14 17:46:00 +0100
commit2836913d98e762d819d6d50ec668112077e8a3a9 (patch)
treeccb02577b40ad4c92b56c8c6d3ae1c53e90afe26 /pydis_site/apps/staff/urls.py
parentMerge pull request #486 from python-discord/bast0006-patch-error-page-margins (diff)
parentRemove stale dependency. (diff)
Merge pull request #487 from python-discord/dewikification
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)
+]