mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-03-16 22:10:28 +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 = {}
|