mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-01 04:30:23 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
from .base import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
if 'foo' in INSTALLED_APPS:
|
|
INSTALLED_APPS.remove('foo')
|
|
|
|
LOGGING = {}
|