summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-02-12 00:07:01 (GMT)
committerGuido van Rossum <guido@python.org>2007-02-12 00:07:01 (GMT)
commit8b8a543a7b007c0b743b0f02bd112760201c7cec (patch)
tree6664f9d700599fb75d79152437d2f65af73bdc52 /Lib
parentc2d9d7f489d9b7685d0a500a86669f9637b07255 (diff)
downloadcpython-8b8a543a7b007c0b743b0f02bd112760201c7cec.zip
cpython-8b8a543a7b007c0b743b0f02bd112760201c7cec.tar.gz
cpython-8b8a543a7b007c0b743b0f02bd112760201c7cec.tar.bz2
Make test_logging pass.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/logging/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/config.py b/Lib/logging/config.py
index 41d577f..2888e5e 100644
--- a/Lib/logging/config.py
+++ b/Lib/logging/config.py
@@ -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