summaryrefslogtreecommitdiff
path: root/Doc/howto/logging-cookbook.rst
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2012-04-09 19:47:16 +0100
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2012-04-09 19:47:16 +0100
commitda29f8c9155454b9a27bfbfa1ce4015615e6b25d (patch)
tree09e1e21efb7c191c8a7cf9e8978d3d7585b72db7 /Doc/howto/logging-cookbook.rst
parent0c0914edb0fba3e31d6ad3aa70ef1822c21782f6 (diff)
parent838e638a9677e06d7a30e3c3bc0d153ccede31ba (diff)
downloadcpython-git-da29f8c9155454b9a27bfbfa1ce4015615e6b25d.tar.gz
Merged comment correction from 3.2.
Diffstat (limited to 'Doc/howto/logging-cookbook.rst')
-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 9511d59327..5e9321aea9 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1377,7 +1377,7 @@ works::
A simple handler for logging events. It runs in the listener process and
dispatches events to loggers based on the name in the received record,
which then get dispatched, by the logging system, to the handlers
- configured for those records.
+ configured for those loggers.
"""
def handle(self, record):
logger = logging.getLogger(record.name)