From 86d29a3c773ba1d6a344ea18d157a6d2c7f75051 Mon Sep 17 00:00:00 2001 From: Michael Dunn Date: Tue, 10 Feb 2015 18:16:14 -0500 Subject: [PATCH] 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! --- docs/writing/logging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/logging.rst b/docs/writing/logging.rst index c280e85..46a4f34 100644 --- a/docs/writing/logging.rst +++ b/docs/writing/logging.rst @@ -166,7 +166,7 @@ the configuration dictionary. 'level': logging.DEBUG} }, loggers = { - root : {'handlers': ['h'], + 'root' : {'handlers': ['h'], 'level': logging.DEBUG} } )