[Python-checkins] cpython (3.2): Corrected comment in cookbook example script.

vinay.sajip python-checkins at python.org
Mon Apr 9 20:47:23 CEST 2012


http://hg.python.org/cpython/rev/0da6aa7bc90b
changeset:   76185:0da6aa7bc90b
branch:      3.2
parent:      76171:f8e7fcd581ff
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Mon Apr 09 19:46:24 2012 +0100
summary:
  Corrected comment in cookbook example script.

files:
  Doc/howto/logging-cookbook.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1350,7 +1350,7 @@
         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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list