summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-10-20 00:42:17 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-10-20 00:42:17 (GMT)
commit3b1cb710843d3015331d6205bc5cbb9a91fd77a2 (patch)
tree4e276a489c5c495844ade5cda00f0917a8448d79 /Doc/howto
parent59136ccad2e949dc99c102fa6ae4df83710755de (diff)
parentdb6cdf8425abbe59ceaa0ec496e4421a2b94bcb8 (diff)
downloadcpython-3b1cb710843d3015331d6205bc5cbb9a91fd77a2.zip
cpython-3b1cb710843d3015331d6205bc5cbb9a91fd77a2.tar.gz
cpython-3b1cb710843d3015331d6205bc5cbb9a91fd77a2.tar.bz2
rstlint: Fix "default role used" warning
This should make buildbots green.
Diffstat (limited to 'Doc/howto')
-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 ebfbbe1..b979aa7 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -2304,7 +2304,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::