mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
7 lines
124 B
Python
7 lines
124 B
Python
|
|
from settings import *
|
||
|
|
|
||
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
||
|
|
|
||
|
|
if 'foo' in INSTALLED_APPS:
|
||
|
|
INSTALLED_APPS.remove('foo')
|