From 4eb0e73ff230b3c358410ca347096676dbb74a65 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Tue, 6 Sep 2011 14:07:23 +0100 Subject: [PATCH] Closes #12906: Fixed bug in YAML configuration. --- Doc/howto/logging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 5ff0d74f6fb..2c9514a58d3 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -679,7 +679,7 @@ the new dictionary-based approach:: version: 1 formatters: simple: - format: format=%(asctime)s - %(name)s - %(levelname)s - %(message)s + format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s' handlers: console: class: logging.StreamHandler