summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2013-01-08 11:26:30 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2013-01-08 11:26:30 (GMT)
commit9a546530bb2c958c12c3724c9ac0318c3210206c (patch)
treeee2f4c56341a6295351b429ac958780f4f6de9ec /Doc/howto
parentf6fb3a3206dcd27a68f5717c08d83ee8f1466545 (diff)
parent21b30827bcfcfebaca63b0470758683aa942eaf9 (diff)
downloadcpython-9a546530bb2c958c12c3724c9ac0318c3210206c.zip
cpython-9a546530bb2c958c12c3724c9ac0318c3210206c.tar.gz
cpython-9a546530bb2c958c12c3724c9ac0318c3210206c.tar.bz2
Issue #16884: Merged doc fix from 3.2.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/logging.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst
index 1e8b662..c2a13d9 100644
--- a/Doc/howto/logging.rst
+++ b/Doc/howto/logging.rst
@@ -970,10 +970,10 @@ The default implementation of :meth:`handleError` in :class:`Handler` checks
to see if a module-level variable, :data:`raiseExceptions`, is set. If set, a
traceback is printed to :data:`sys.stderr`. If not set, the exception is swallowed.
-**Note:** The default value of :data:`raiseExceptions` is ``True``. This is because
-during development, you typically want to be notified of any exceptions that
-occur. It's advised that you set :data:`raiseExceptions` to ``False`` for production
-usage.
+.. note:: The default value of :data:`raiseExceptions` is ``True``. This is
+ because during development, you typically want to be notified of any
+ exceptions that occur. It's advised that you set :data:`raiseExceptions` to
+ ``False`` for production usage.
.. currentmodule:: logging