diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-09-06 13:06:24 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-09-06 13:06:24 (GMT) |
commit | fa4736ef2f3ccc82c3f4f11056e54e674599b3bb (patch) | |
tree | e569d4062a3671d49e644b30f1e6052b8cea7ff8 | |
parent | d99ff29cf9d22c458901305606fa7d7276c503f3 (diff) | |
download | cpython-fa4736ef2f3ccc82c3f4f11056e54e674599b3bb.zip cpython-fa4736ef2f3ccc82c3f4f11056e54e674599b3bb.tar.gz cpython-fa4736ef2f3ccc82c3f4f11056e54e674599b3bb.tar.bz2 |
Closes #12906: Fixed bug in YAML configuration.
-rw-r--r-- | Doc/howto/logging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 6fb8081..029a0ab 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -670,7 +670,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 |