summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-09-06 14:07:23 +0100
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-09-06 14:07:23 +0100
commit4eb0e73ff230b3c358410ca347096676dbb74a65 (patch)
tree6433f0457d89509d2e7864dd82938bc71517e87a
parent7f5556095eed7383e98c24766aa302c5e473abc1 (diff)
downloadcpython-git-4eb0e73ff230b3c358410ca347096676dbb74a65.tar.gz
Closes #12906: Fixed bug in YAML configuration.
-rw-r--r--Doc/howto/logging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst
index 5ff0d74f6f..2c9514a58d 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