commit | 4e933137af2e880b53afe5396101c44846dec9bd | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Wed Sep 06 20:05:58 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Wed Sep 06 20:05:58 2006 +0000 |
tree | b3427bcc6fb3495a3ac1ab7e82eedd833b98d399 | |
parent | 38f6237dfe1355192a11fe004d32f547cd1eadbd [diff] [blame] |
Fix missing import of the types module in logging.config.
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