diff options
author | Georg Brandl <georg@python.org> | 2006-09-06 20:06:27 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-09-06 20:06:27 +0000 |
commit | 4dc095249e9b53ce59af760ed0adad56c5a5a9fe (patch) | |
tree | 8440994b96cf118661db4c55717f623b99259eaa /Lib/logging/config.py | |
parent | 291a1b89c6d09a7b54c50bffefb089dadc78f81c (diff) | |
download | cpython-git-4dc095249e9b53ce59af760ed0adad56c5a5a9fe.tar.gz |
Fix missing import of the types module in logging.config.
(backport from rev. 51785)
Diffstat (limited to 'Lib/logging/config.py')
-rw-r--r-- | Lib/logging/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 5ea0d15b64..f14eb122b7 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -27,7 +27,7 @@ Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved. 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 |