summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-11-05 16:28:18 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-11-05 16:28:18 (GMT)
commit2ee55f37c2977f0499cf3abb08bcfb3246bf3791 (patch)
tree76d9fb88a2e41bd2f7a2e94a1efaf0ec41d7424e /Doc
parentbe038077fbfd2460c7e97194021fa53313b74819 (diff)
downloadcpython-2ee55f37c2977f0499cf3abb08bcfb3246bf3791.zip
cpython-2ee55f37c2977f0499cf3abb08bcfb3246bf3791.tar.gz
cpython-2ee55f37c2977f0499cf3abb08bcfb3246bf3791.tar.bz2
Fix use of default reST role
Diffstat (limited to 'Doc')
-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 8743eed..45fd779 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1320,7 +1320,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::