commit | f3e304297e94b9b1956a4ed95debd1b163958d71 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sat Aug 12 08:32:02 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Sat Aug 12 08:32:02 2006 +0000 |
tree | bd299773d4bff2b58b3296624ae2af746e7efb0d | |
parent | 953c1897d2c1683e37899998d4e2bc1a9d85b6c0 [diff] [blame] |
Repair logging test spew caused by rev. 51206.
diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 511e659..5ea0d15 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py
@@ -79,7 +79,7 @@ logging._acquireLock() try: logging._handlers.clear() - logging._handlerList = [] + del logging._handlerList[:] # Handlers add themselves to logging._handlers handlers = _install_handlers(cp, formatters) _install_loggers(cp, handlers)