mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Make test_logging pass.
This commit is contained in:
parent
c2d9d7f489
commit
8b8a543a7b
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ def _install_loggers(cp, handlers):
|
|||
#what's left in existing is the set of loggers
|
||||
#which were in the previous configuration but
|
||||
#which are not in the new configuration.
|
||||
existing = root.manager.loggerDict.keys()
|
||||
existing = list(root.manager.loggerDict.keys())
|
||||
#now set up the new ones...
|
||||
for log in llist:
|
||||
sectname = "logger_%s" % log
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue