summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-04-09 19:05:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-04-09 19:05:13 (GMT)
commit77ec32655e6e599ba8f97ec9b46b1da38f2b9515 (patch)
tree74336e839ddb09da826b7d7b8f7466ead561bc04
parent64ed576de8102fc26a6f550f3cca8dcf2c8b6f38 (diff)
parentda29f8c9155454b9a27bfbfa1ce4015615e6b25d (diff)
downloadcpython-77ec32655e6e599ba8f97ec9b46b1da38f2b9515.zip
cpython-77ec32655e6e599ba8f97ec9b46b1da38f2b9515.tar.gz
cpython-77ec32655e6e599ba8f97ec9b46b1da38f2b9515.tar.bz2
merge heads
-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 9511d59..5e9321a 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)