Update logging.rst

The name of a dictionary key `root` was not properly enclosed in quotes, which results in a syntax error when people copy this code.

Thanks!
This commit is contained in:
Michael Dunn
2015-02-10 18:16:14 -05:00
parent 4ffb7ff3d8
commit 86d29a3c77
+1 -1
View File
@@ -166,7 +166,7 @@ the configuration dictionary.
'level': logging.DEBUG}
},
loggers = {
root : {'handlers': ['h'],
'root' : {'handlers': ['h'],
'level': logging.DEBUG}
}
)