From e73d4a574afb9f17099d78dc677dcedec28e815e Mon Sep 17 00:00:00 2001 From: Seizan Shimazaki Date: Thu, 27 Mar 2014 18:52:03 +0900 Subject: [PATCH] Update installation.rst I tried using django-debug-toolbar with Django 1.7b1. At first, I configured just like documentation (add `'debug_toolbar.apps.DebugToolbarConfig'` to `INSTALLED_APPS`) and I failed to runserver because ``` ImportError: No module named DebugToolbarConfig ``` Next, I configured as before 1.6 (add `'debug_toolbar'` to `INSTALLED_APPS`) and I succeeded in runserver. --- docs/installation.rst | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 70ca46e82..f761e9120 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 `_ 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', )