It would be nice if things like INSTALLED_APPS += ('django-extensions',) would work with settingsdev and/or settingslocal respectively.
Of course this isn't just true for INSTALLED_APPS but should work in general. For example, things like this should work:
INTERNAL_IPS = ('127.0.0.1',)
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INSTALLED_APPS += ('debug_toolbar',)
It would be nice if things like
INSTALLED_APPS += ('django-extensions',)would work with settingsdev and/or settingslocal respectively.Of course this isn't just true for INSTALLED_APPS but should work in general. For example, things like this should work:
INTERNAL_IPS = ('127.0.0.1',)
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INSTALLED_APPS += ('debug_toolbar',)