From 586b08d625712b96ed9f23f6bf38db3930323ea2 Mon Sep 17 00:00:00 2001 From: Mr McClain Date: Thu, 21 Jan 2016 03:40:06 -0600 Subject: [PATCH] fixed installed apps bug forgot to add it to the settings.py example --- alliance_auth/settings.py.example | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/alliance_auth/settings.py.example b/alliance_auth/settings.py.example index 70f16ff7..2a6e22e8 100755 --- a/alliance_auth/settings.py.example +++ b/alliance_auth/settings.py.example @@ -59,6 +59,7 @@ INSTALLED_APPS = ( 'timerboard', 'srp', 'sigtracker', + 'optimer', ) MIDDLEWARE_CLASSES = ( @@ -443,6 +444,10 @@ LOGGING = { 'handlers': ['log_file', 'console'], 'level': 'DEBUG', }, + 'optimer': { + 'handlers': ['log_file', 'console'], + 'level': 'DEBUG', + }, 'util': { 'handlers': ['log_file', 'console'], 'level': 'DEBUG',