Merge pull request #704 from ForeverWintr/master

Fix incorrect dictConfig example
This commit is contained in:
Ian Cordasco
2016-05-10 20:02:20 -05:00
+4 -4
View File
@@ -163,10 +163,10 @@ the configuration dictionary.
'formatter': 'f', 'formatter': 'f',
'level': logging.DEBUG} 'level': logging.DEBUG}
}, },
loggers = { root = {
'root': {'handlers': ['h'], 'handlers': ['h'],
'level': logging.DEBUG} 'level': logging.DEBUG,
} },
) )
dictConfig(logging_config) dictConfig(logging_config)