From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 13 Aug 2018 00:06:30 +0000 (-0700) Subject: Fix misindented yaml in logging how to example (GH-8604) X-Git-Tag: v3.6.7rc1~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4cd33cdda67451c9125a2a350ad533aa54762316;p=thirdparty%2FPython%2Fcpython.git Fix misindented yaml in logging how to example (GH-8604) (cherry picked from commit 10b59f1b019cd00c940dd7f4a74c4f667a20f25f) Co-authored-by: Rémy HUBSCHER --- diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 9914f8d154ab..78a237f5ae63 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`.