mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
9 lines
252 B
Python
9 lines
252 B
Python
from settings 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
|