PEP8 updates.

This commit is contained in:
Roberto Rosario
2015-10-19 01:27:26 -04:00
parent e57080b06d
commit bfe621ba89
6 changed files with 11 additions and 11 deletions

View File

@@ -1096,8 +1096,8 @@ THE SOFTWARE.
level = 'INFO'
loggers = {}
for app in apps.apps.get_app_configs():
loggers[app.name] = {
for project_app in apps.apps.get_app_configs():
loggers[project_app.name] = {
'handlers': ['console'],
'propagate': True,
'level': level,