mirror of
https://github.com/evennia/evennia.git
synced 2026-03-27 18:26:32 +01:00
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',
|
||||
)
|
||||
|
||||
# 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue