django-fobi/examples/simple/settings_docs.py

9 lines
138 B
Python
Raw Normal View History

2015-12-20 23:55:36 +00:00
from settings import *
INSTALLED_APPS = list(INSTALLED_APPS)
if 'foo' in INSTALLED_APPS:
INSTALLED_APPS.remove('foo')
2015-12-22 23:16:38 +00:00
LOGGING = {}