mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-15 08:03:11 +00:00
14 lines
383 B
Python
14 lines
383 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
|
||
|
|
INSTALLED_APPS.append('captcha')
|
||
|
|
INSTALLED_APPS.append(
|
||
|
|
'fobi.contrib.plugins.form_elements.security.captcha'
|
||
|
|
)
|
||
|
|
except Exception as err:
|
||
|
|
pass
|