This commit is contained in:
Greg Taylor 2008-12-14 01:12:43 +00:00
parent 90cdc6573d
commit d38f2bd2f8

View file

@ -175,6 +175,14 @@ INSTALLED_APPS = (
'webapps.website',
)
# If django_extensions is present, import it and install it. Otherwise fail
# silently.
try:
import django_extensions
INSTALLED_APPS = INSTALLED_APPS + ('django_extensions',)
except ImportError:
pass
"""
Importing everything from local_settings.py overrides the settings in this
file with the settings specified in local_settings.py. Any configuration