diff options
| author | Seyi Ogunyemi | 2014-05-04 17:54:02 +0100 |
|---|---|---|
| committer | Seyi Ogunyemi | 2014-05-04 17:54:02 +0100 |
| commit | b0ca0b4177b977d27f60e98cba0e6191a2dc25b5 (patch) | |
| tree | 6fb3030a86d57cbe93688aa9b109eadd3aa2057c | |
| parent | be12fc41dc841f8e35823dab8748c8757887a368 (diff) | |
| download | django-debug-toolbar-b0ca0b4177b977d27f60e98cba0e6191a2dc25b5.tar.bz2 | |
settings: fix minor typo.
Otherwise, it render the deprecation warning as '… in theDEBUG_TOOLBAR_CONFIG …'
| -rw-r--r-- | debug_toolbar/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug_toolbar/settings.py b/debug_toolbar/settings.py index 7ba7012..70268b6 100644 --- a/debug_toolbar/settings.py +++ b/debug_toolbar/settings.py @@ -130,7 +130,7 @@ else: if 'INTERCEPT_REDIRECTS' in USER_CONFIG: warnings.warn( "INTERCEPT_REDIRECTS is deprecated. Please use the " - "DISABLE_PANELS config in the" + "DISABLE_PANELS config in the " "DEBUG_TOOLBAR_CONFIG setting.", DeprecationWarning) if USER_CONFIG['INTERCEPT_REDIRECTS']: if 'debug_toolbar.panels.redirects.RedirectsPanel' \ |
