From 6c864231ab3bd61e7498624356619092647dcf98 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 26 Jan 2014 20:20:23 +0100 Subject: 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. --- debug_toolbar/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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' -- cgit v1.2.3