diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-09-06 13:08:24 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-09-06 13:08:24 (GMT) |
commit | e0afb16a317b71df0c538369a9fe223685d57b95 (patch) | |
tree | 505279393487ef60079283b2ac1d277f68a35c52 | |
parent | 2825c0b7d9ba49f30c69634f3852093fc1ed5928 (diff) | |
parent | 4eb0e73ff230b3c358410ca347096676dbb74a65 (diff) | |
download | cpython-e0afb16a317b71df0c538369a9fe223685d57b95.zip cpython-e0afb16a317b71df0c538369a9fe223685d57b95.tar.gz cpython-e0afb16a317b71df0c538369a9fe223685d57b95.tar.bz2 |
Closes #12906: Merged fix from 3.2.
-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 5ff0d74..2c9514a 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 |