summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-04-09 15:05:23 -0400
committerBenjamin Peterson <benjamin@python.org>2012-04-09 15:05:23 -0400
commitd47f0d6d1b8f1eb125fb8a831ad80c125a96bd4a (patch)
treeca221c2ed2848f822b918aa36a030796ae43ff34
parentca819c3c9d2651bcaeec311915a83dd176acbd13 (diff)
parent838e638a9677e06d7a30e3c3bc0d153ccede31ba (diff)
downloadcpython-git-d47f0d6d1b8f1eb125fb8a831ad80c125a96bd4a.tar.gz
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 2b5444ac46..7ee641235a 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1350,7 +1350,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)