commit | cea4bf092d8503fe03296ce0afd835fe9e9a4245 | [log] [tgz] |
---|---|---|
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Fri Jun 30 00:13:08 2006 +0000 |
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | Fri Jun 30 00:13:08 2006 +0000 |
tree | a3de6937a2df16703aad3ae3bc5882ae72592702 | |
parent | 4ef256cab0b55355b57623d7c5b2594dee3f5b8b [diff] [blame] |
Fixed bug in fileConfig() which failed to clear logging._handlerList
diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 5adfe4d..511e659 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py
@@ -79,6 +79,7 @@ logging._acquireLock() try: logging._handlers.clear() + logging._handlerList = [] # Handlers add themselves to logging._handlers handlers = _install_handlers(cp, formatters) _install_loggers(cp, handlers)