summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-10-20 00:41:38 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-10-20 00:41:38 (GMT)
commitf84499a4e3f369afaf36761caab3963ce6234fd3 (patch)
tree4b625fbd3336e6a95b814c1dc69a6c350a236baa
parent19ff6977a7859e01678a49700bed23a3a77e6355 (diff)
downloadcpython-f84499a4e3f369afaf36761caab3963ce6234fd3.zip
cpython-f84499a4e3f369afaf36761caab3963ce6234fd3.tar.gz
cpython-f84499a4e3f369afaf36761caab3963ce6234fd3.tar.bz2
rstlint: Fix "default role used" warning
This should make buildbots green.
-rw-r--r--Doc/howto/logging-cookbook.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index b89a501..af888c2 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::