mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 05:44:42 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
from settings import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
try:
|
|
INSTALLED_APPS.remove('south')
|
|
except Exception as e:
|
|
pass
|