aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastermain
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-06-16 16:00:26 +0100
committerAlexandru DAMIAN <alexandru.damian@intel.com>2015-06-25 11:28:51 +0100
commit8ca10764ffd6cfec12cbfeabf240d81213a07845 (patch)
tree3ba820fae5b494fd7b09f813f61ed979646345ca /lib/toaster/toastermain
parent2f74ff59f2873c1cf121f7a385f3ab971c793a9c (diff)
downloadbitbake-8ca10764ffd6cfec12cbfeabf240d81213a07845.tar.gz
toaster: split orm app into it's own module and app
The orm application was also the django application to collect the build information. Splitting this module up into it's functional parts. orm for the data module and bldcollector for build collection data. Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Diffstat (limited to 'lib/toaster/toastermain')
-rw-r--r--lib/toaster/toastermain/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/toaster/toastermain/settings.py b/lib/toaster/toastermain/settings.py
index 60e80de2f..c72a90411 100644
--- a/lib/toaster/toastermain/settings.py
+++ b/lib/toaster/toastermain/settings.py
@@ -268,7 +268,7 @@ INSTALLED_APPS = (
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'django.contrib.humanize',
- 'orm',
+ 'bldcollector',
'toastermain',
'south',
)