This commit is contained in:
Ross
2025-12-15 21:45:33 +00:00
parent b48382e990
commit 5b4838e67d
+1 -1
View File
@@ -28,7 +28,7 @@ if settings.DEBUG:
try:
import debug_toolbar
urlpatterns = [path("__debug__/,", include(debug_toolbar.urls))] + urlpatterns
urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns
except Exception:
# debug_toolbar not installed; skip
pass