mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 05:44:42 +00:00
10 lines
251 B
Python
Executable file
10 lines
251 B
Python
Executable file
from settings import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
try:
|
|
INSTALLED_APPS.remove('south')
|
|
INSTALLED_APPS.append('captcha')
|
|
INSTALLED_APPS.append('fobi.contrib.plugins.form_elements.fields.captcha')
|
|
except Exception as e:
|
|
pass
|