diff options
Diffstat (limited to 'bitbake/lib/toaster/toastermain/settings.py')
-rw-r--r-- | bitbake/lib/toaster/toastermain/settings.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py index 1dab25aa6b..42581f2df4 100644 --- a/bitbake/lib/toaster/toastermain/settings.py +++ b/bitbake/lib/toaster/toastermain/settings.py | |||
@@ -232,17 +232,13 @@ TEMPLATE_CONTEXT_PROCESSORS = ('django.contrib.auth.context_processors.auth', | |||
232 | 232 | ||
233 | INSTALLED_APPS = ( | 233 | INSTALLED_APPS = ( |
234 | #'django.contrib.sites', | 234 | #'django.contrib.sites', |
235 | #'django.contrib.messages', | ||
236 | 'django.contrib.staticfiles', | 235 | 'django.contrib.staticfiles', |
237 | # Uncomment the next line to enable the admin: | ||
238 | # 'django.contrib.admin', | ||
239 | # Uncomment the next line to enable admin documentation: | 236 | # Uncomment the next line to enable admin documentation: |
240 | # 'django.contrib.admindocs', | 237 | # 'django.contrib.admindocs', |
241 | 'django.contrib.humanize', | 238 | 'django.contrib.humanize', |
242 | 'orm', | 239 | 'orm', |
243 | 'toastermain', | 240 | 'toastermain', |
244 | 'south', | 241 | 'south', |
245 | 'bldcontrol', | ||
246 | ) | 242 | ) |
247 | 243 | ||
248 | SOUTH_TESTS_MIGRATE = False | 244 | SOUTH_TESTS_MIGRATE = False |
@@ -251,7 +247,11 @@ SOUTH_TESTS_MIGRATE = False | |||
251 | if MANAGED: | 247 | if MANAGED: |
252 | INSTALLED_APPS = ('django.contrib.auth', | 248 | INSTALLED_APPS = ('django.contrib.auth', |
253 | 'django.contrib.contenttypes', | 249 | 'django.contrib.contenttypes', |
254 | 'django.contrib.sessions',) + INSTALLED_APPS | 250 | 'django.contrib.messages', |
251 | 'django.contrib.sessions', | ||
252 | # Uncomment the next line to enable the admin: | ||
253 | 'django.contrib.admin', | ||
254 | ) + INSTALLED_APPS | ||
255 | 255 | ||
256 | 256 | ||
257 | # We automatically detect and install applications here if | 257 | # We automatically detect and install applications here if |