gh-101440: fix json snippet error in logging-cookbook.rst (#101439)
https://github.com/python/cpython/commit/20c11f2e600e1c0bf42de4d6f2fb3ce5ccc... commit: 20c11f2e600e1c0bf42de4d6f2fb3ce5ccc2587c branch: main author: Peter Jiping Xie <peter.jp.xie@gmail.com> committer: hugovk <hugovk@users.noreply.github.com> date: 2023-01-31T17:30:38+02:00 summary: gh-101440: fix json snippet error in logging-cookbook.rst (#101439) files: M Doc/howto/logging-cookbook.rst diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 26cf40274fd3..7661249ad522 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",
participants (1)
-
hugovk