fixed installed apps bug

forgot to add it to the settings.py example
This commit is contained in:
Mr McClain 2016-01-21 03:40:06 -06:00
parent b46ce75f73
commit 586b08d625

View File

@ -59,6 +59,7 @@ INSTALLED_APPS = (
'timerboard', 'timerboard',
'srp', 'srp',
'sigtracker', 'sigtracker',
'optimer',
) )
MIDDLEWARE_CLASSES = ( MIDDLEWARE_CLASSES = (
@ -443,6 +444,10 @@ LOGGING = {
'handlers': ['log_file', 'console'], 'handlers': ['log_file', 'console'],
'level': 'DEBUG', 'level': 'DEBUG',
}, },
'optimer': {
'handlers': ['log_file', 'console'],
'level': 'DEBUG',
},
'util': { 'util': {
'handlers': ['log_file', 'console'], 'handlers': ['log_file', 'console'],
'level': 'DEBUG', 'level': 'DEBUG',