From 6edb7ba237091165d3b810e902fc450eb505fcc1 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 15 Nov 2021 12:41:36 +0000 Subject: [PATCH] Remove settings import from install instructions. The import of settings is no longer required after #1349 --- docs/installation.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index ed3dfd0cb..58bbaf609 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -51,11 +51,10 @@ Setting up URLconf Add the Debug Toolbar's URLs to your project's URLconf:: import debug_toolbar - from django.conf import settings from django.urls import include, path urlpatterns = [ - ... + # ... path('__debug__/', include(debug_toolbar.urls)), ]