[Python-checkins] cpython (merge default -> default): merge heads

benjamin.peterson python-checkins at python.org
Mon Apr 9 21:06:06 CEST 2012


http://hg.python.org/cpython/rev/211aded9df41
changeset:   76194:211aded9df41
parent:      76193:c20f604a2da6
parent:      76186:e493ff03561f
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Apr 09 15:05:13 2012 -0400
summary:
  merge heads

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
@@ -1377,7 +1377,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