summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastermain/settings.py')
-rw-r--r--bitbake/lib/toaster/toastermain/settings.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py
index 09ec2bd..a8b3e3a 100644
--- a/bitbake/lib/toaster/toastermain/settings.py
+++ b/bitbake/lib/toaster/toastermain/settings.py
@@ -241,8 +241,6 @@ INSTALLED_APPS = (
'django.contrib.humanize',
'orm',
'toastermain',
- 'toastergui',
- 'bldviewer',
'south',
'bldcontrol',
)
@@ -261,7 +259,7 @@ currentdir = os.path.dirname(__file__)
for t in os.walk(os.path.dirname(currentdir)):
modulename = os.path.basename(t[0])
if ("views.py" in t[2] or "models.py" in t[2]) and not modulename in INSTALLED_APPS:
- INSTALLED_APPS.append(modulename)
+ INSTALLED_APPS = INSTALLED_APPS + (modulename,)
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
OpenPOWER on IntegriCloud