There was an error while loading. Please reload this page.
2 parents 027f04b + f186fa3 commit d7cfc37Copy full SHA for d7cfc37
gunicorn/glogging.py
@@ -90,7 +90,7 @@
90
def loggers():
91
""" get list of all loggers """
92
root = logging.root
93
- existing = root.manager.loggerDict.keys()
+ existing = list(root.manager.loggerDict.keys())
94
return [logging.getLogger(name) for name in existing]
95
96
0 commit comments