diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-27 21:06:22 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-27 21:06:22 +0100 |
commit | 45ac36b9165dee4a9a2b3bc39c7e34615e6abef7 (patch) | |
tree | adab29947e9c3ff37c66751d2b195384feddade3 /config | |
parent | 6812569a5bd8d6dbe943f578c01855aee41fc239 (diff) |
Removes debug_toolbar line from conf/urls - 3
Diffstat (limited to 'config')
-rw-r--r-- | config/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/urls.py b/config/urls.py index e5c3be5..1dc7fcb 100644 --- a/config/urls.py +++ b/config/urls.py @@ -53,6 +53,6 @@ if settings.DEBUG: ), path("500/", default_views.server_error), ] - if "debug_toolbar" in settings.INSTALLED_APPS: + # if "debug_toolbar" in settings.INSTALLED_APPS: - urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns + # urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns |