mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 14:23:09 +00:00
10 lines
255 B
Python
10 lines
255 B
Python
|
|
from .base import *
|
||
|
|
|
||
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
||
|
|
|
||
|
|
try:
|
||
|
|
INSTALLED_APPS.append('south') if 'south' not in INSTALLED_APPS else None
|
||
|
|
# INSTALLED_APPS.remove('tinymce') if 'tinymce' in INSTALLED_APPS else None
|
||
|
|
except Exception as e:
|
||
|
|
pass
|