From f84499a4e3f369afaf36761caab3963ce6234fd3 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Tue, 20 Oct 2015 03:41:38 +0300 Subject: [PATCH] rstlint: Fix "default role used" warning This should make buildbots green. --- Doc/howto/logging-cookbook.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index b89a501e13..af888c2b24 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -2295,7 +2295,7 @@ such as `UTCFormatter`, shown below:: class UTCFormatter(logging.Formatter): converter = time.gmtime -and you can then use the `UTCFormatter` in your code instead of +and you can then use the ``UTCFormatter`` in your code instead of :class:`~logging.Formatter`. If you want to do that via configuration, you can use the :func:`~logging.config.dictConfig` API with an approach illustrated by the following complete example:: -- 2.40.0