Skip to content

Commit 92d4cbb

Browse files
committed
Don't suggest adding the app config to INSTALLED_APPS.
This is more in line with Django's contrib apps. Fix #621.
1 parent d177aef commit 92d4cbb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

docs/installation.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,12 @@ Quick setup
2323

2424
Make sure that ``'django.contrib.staticfiles'`` is `set up properly
2525
<https://docs.djangoproject.com/en/stable/howto/static-files/>`_ and add
26-
``'debug_toolbar.apps.DebugToolbarConfig'`` (Django ≥ 1.7) or
27-
``'debug_toolbar'`` (Django < 1.7) to your ``INSTALLED_APPS`` setting::
26+
``'debug_toolbar'`` to your ``INSTALLED_APPS`` setting::
2827

2928
INSTALLED_APPS = (
3029
# ...
3130
'django.contrib.staticfiles',
3231
# ...
33-
# If you're using Django 1.7.x or later
34-
'debug_toolbar.apps.DebugToolbarConfig',
35-
# If you're using Django 1.6.x or earlier
3632
'debug_toolbar',
3733
)
3834

0 commit comments

Comments
 (0)