aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAymeric Augustin2014-01-26 20:20:23 +0100
committerAymeric Augustin2014-01-26 20:21:17 +0100
commit6c864231ab3bd61e7498624356619092647dcf98 (patch)
tree9ad02d90dd91797d2b7a79f843994bacb08f62c0
parent8116c4bc6749aad11a200963de7c83d651c100c3 (diff)
downloaddjango-debug-toolbar-6c864231ab3bd61e7498624356619092647dcf98.tar.bz2
Take advantage of default_app_config.
This is really going to help reduce complaints, given that we don't have a good place to put upgrade instructions.
-rw-r--r--debug_toolbar/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/debug_toolbar/__init__.py b/debug_toolbar/__init__.py
index 7ebd1c7..be51a7e 100644
--- a/debug_toolbar/__init__.py
+++ b/debug_toolbar/__init__.py
@@ -15,3 +15,6 @@ except Exception:
# Reference URLpatterns with a string to avoid the risk of circular imports.
urls = 'debug_toolbar.toolbar', 'djdt', 'djdt'
+
+
+default_app_config = 'debug_toolbar.apps.DebugToolbarConfig'