commit | 4dc095249e9b53ce59af760ed0adad56c5a5a9fe | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Wed Sep 06 20:06:27 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Wed Sep 06 20:06:27 2006 +0000 |
tree | 8440994b96cf118661db4c55717f623b99259eaa | |
parent | 291a1b89c6d09a7b54c50bffefb089dadc78f81c [diff] [blame] |
Fix missing import of the types module in logging.config. (backport from rev. 51785)
diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 5ea0d15..f14eb12 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py
@@ -27,7 +27,7 @@ To use, simply 'import logging' and log away! """ -import sys, logging, logging.handlers, string, socket, struct, os, traceback +import sys, logging, logging.handlers, string, socket, struct, os, traceback, types try: import thread