diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-31 15:51:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-31 15:51:48 (GMT) |
commit | 5e498072dcb7fe4980ffee45631fd2f65665ec49 (patch) | |
tree | a3570b8cea8c162a7b0a9dc346785acfc588f25a /Doc | |
parent | 9e4ba5c4bf84b2a77b5d2334105a7879c219456f (diff) | |
download | cpython-5e498072dcb7fe4980ffee45631fd2f65665ec49.zip cpython-5e498072dcb7fe4980ffee45631fd2f65665ec49.tar.gz cpython-5e498072dcb7fe4980ffee45631fd2f65665ec49.tar.bz2 |
[3.11] gh-101440: fix json snippet error in logging-cookbook.rst (GH-101439) (GH-101463)
(cherry picked from commit 20c11f2e600e1c0bf42de4d6f2fb3ce5ccc2587c)
Co-authored-by: Peter Jiping Xie <peter.jp.xie@gmail.com>
Automerge-Triggered-By: GH:hugovk
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 2ba5b5c..97e990d 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -307,7 +307,7 @@ Suppose you configure logging with the following JSON: "class": "logging.StreamHandler", "level": "INFO", "formatter": "simple", - "stream": "ext://sys.stdout", + "stream": "ext://sys.stdout" }, "stderr": { "class": "logging.StreamHandler", |