1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: =?utf-8?q?Pierre-Elliott_B=C3=A9cue?= <peb@debian.org>
Date: Sun, 29 Jan 2023 16:34:48 +0100
Subject: Drop requests_panel
---
example_project/settings.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/example_project/settings.py b/example_project/settings.py
index a322848..9952407 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -85,7 +85,6 @@ INSTALLED_APPS = (
'allauth.socialaccount.providers.stackexchange',
# Dev only dependencies. Do not include in any production site.
'debug_toolbar',
- 'requests_panel',
)
@@ -304,7 +303,6 @@ INTERNAL_IPS = ('127.0.0.1',)
# List of panels that show up for django-debug-toolbar. They are
# very useful for debugging and are ONLY REQUIRED FOR TESTING.
DEBUG_TOOLBAR_PANELS = [
- 'requests_panel.panel.RequestsDebugPanel',
'debug_toolbar.panels.sql.SQLPanel',
'debug_toolbar.panels.templates.TemplatesPanel',
'debug_toolbar.panels.history.HistoryPanel',
|