diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-04-09 19:46:24 +0100 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-04-09 19:46:24 +0100 |
commit | 838e638a9677e06d7a30e3c3bc0d153ccede31ba (patch) | |
tree | afcbb683c4da3d9bd801c8b67dd2b204ca617eb5 | |
parent | c0aa9eeb90204b8a67a610180c003c182d1691aa (diff) | |
download | cpython-git-838e638a9677e06d7a30e3c3bc0d153ccede31ba.tar.gz |
Corrected comment in cookbook example script.
-rw-r--r-- | 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 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) |