diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-31 15:38:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-31 15:38:28 (GMT) |
commit | 6b2ed1c29954292e6d2cd3d8fd24bf11bd4cc6cc (patch) | |
tree | 58499a843cd6f5f4f995bd60337478ea56c84f0f | |
parent | ca1184898a158b3d2cb3363c425cdc16629b38f8 (diff) | |
download | cpython-6b2ed1c29954292e6d2cd3d8fd24bf11bd4cc6cc.zip cpython-6b2ed1c29954292e6d2cd3d8fd24bf11bd4cc6cc.tar.gz cpython-6b2ed1c29954292e6d2cd3d8fd24bf11bd4cc6cc.tar.bz2 |
gh-101440: fix json snippet error in logging-cookbook.rst (GH-101439)
(cherry picked from commit 20c11f2e600e1c0bf42de4d6f2fb3ce5ccc2587c)
Co-authored-by: Peter Jiping Xie <peter.jp.xie@gmail.com>
-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 66945bd..8b1e7e4 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", |