From: Vinay Sajip Date: Mon, 9 Apr 2012 18:46:24 +0000 (+0100) Subject: Corrected comment in cookbook example script. X-Git-Tag: v3.3.0a3~269^2^2^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=838e638a9677e06d7a30e3c3bc0d153ccede31ba;p=thirdparty%2FPython%2Fcpython.git Corrected comment in cookbook example script. --- diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 2b5444ac4634..7ee641235abd 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)