django-fobi/examples/simple/settings/bootstrap3_theme_django_1_7.py
2016-10-17 03:30:09 +02:00

9 lines
249 B
Python

from .base import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.remove('south') if 'south' in INSTALLED_APPS else None
INSTALLED_APPS.remove('tinymce') if 'tinymce' in INSTALLED_APPS else None
except Exception as e:
pass