aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin2014-07-26 22:27:04 +0200
committerAymeric Augustin2014-07-26 22:27:04 +0200
commit92d4cbbc4aff93e67dde2a79cb85a3df2bdd13b9 (patch)
tree67e8e09b9d00b21b310f5b96a5dd94f4dfdae664 /docs
parentd177aefdf14be50f24aa376813cd467ee8d4cb18 (diff)
downloaddjango-debug-toolbar-92d4cbbc4aff93e67dde2a79cb85a3df2bdd13b9.tar.bz2
Don't suggest adding the app config to INSTALLED_APPS.
This is more in line with Django's contrib apps. Fix #621.
Diffstat (limited to 'docs')
-rw-r--r--docs/installation.rst6
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index 70ca46e..f761e91 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -23,16 +23,12 @@ Quick setup
Make sure that ``'django.contrib.staticfiles'`` is `set up properly
<https://docs.djangoproject.com/en/stable/howto/static-files/>`_ and add
-``'debug_toolbar.apps.DebugToolbarConfig'`` (Django ≥ 1.7) or
-``'debug_toolbar'`` (Django < 1.7) to your ``INSTALLED_APPS`` setting::
+``'debug_toolbar'`` to your ``INSTALLED_APPS`` setting::
INSTALLED_APPS = (
# ...
'django.contrib.staticfiles',
# ...
- # If you're using Django 1.7.x or later
- 'debug_toolbar.apps.DebugToolbarConfig',
- # If you're using Django 1.6.x or earlier
'debug_toolbar',
)