This commit is contained in:
parent
90cdc6573d
commit
d38f2bd2f8
1 changed files with 8 additions and 0 deletions
|
|
@ -175,6 +175,14 @@ INSTALLED_APPS = (
|
||||||
'webapps.website',
|
'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
|
Importing everything from local_settings.py overrides the settings in this
|
||||||
file with the settings specified in local_settings.py. Any configuration
|
file with the settings specified in local_settings.py. Any configuration
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue