Skip to content

Commit

Permalink
Fixed bug in settings: old module names
Browse files Browse the repository at this point in the history
  • Loading branch information
gerardparis committed Nov 2, 2017
1 parent 2bdccde commit 8fe06f1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions api/api/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@
'django.contrib.staticfiles',
'bootstrap3',
'rest_framework',
'filters',
'swift',
'controller'
)

MIDDLEWARE_CLASSES = (
Expand Down Expand Up @@ -102,12 +99,12 @@
'version': 1,
'formatters': {
'standard_django': {
'()': 'api.common_utils.LoggingColorsDjango',
'()': 'api.common.LoggingColorsDjango',
'format': '[%(asctime)s]"%(levelname)s" %(message)s',
'datefmt': '%d/%b/%Y %H:%M:%S',
},
'standard_crystal': {
'()': 'api.common_utils.LoggingColorsCrystal',
'()': 'api.common.LoggingColorsCrystal',
'format': '[%(asctime)s]"%(levelname)s" %(name)s: %(message)s',
'datefmt': '%d/%b/%Y %H:%M:%S',
},
Expand Down

0 comments on commit 8fe06f1

Please sign in to comment.