diff options
author | Rémy HUBSCHER <hubscher.remy@gmail.com> | 2018-08-12 23:58:26 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-08-12 23:58:26 (GMT) |
commit | 10b59f1b019cd00c940dd7f4a74c4f667a20f25f (patch) | |
tree | e436201bf4b0fef11909160e615dbbe3f40ecae1 /Doc/howto | |
parent | a47f394af83c4bc29fac65c31e04091f87b98b35 (diff) | |
download | cpython-10b59f1b019cd00c940dd7f4a74c4f667a20f25f.zip cpython-10b59f1b019cd00c940dd7f4a74c4f667a20f25f.tar.gz cpython-10b59f1b019cd00c940dd7f4a74c4f667a20f25f.tar.bz2 |
Fix misindented yaml in logging how to example (GH-8604)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 47b5c68..6f47bae 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -750,9 +750,9 @@ the new dictionary-based approach: level: DEBUG handlers: [console] propagate: no - root: - level: DEBUG - handlers: [console] + root: + level: DEBUG + handlers: [console] For more information about logging using a dictionary, see :ref:`logging-config-api`. |