diff options
author | Georg Brandl <georg@python.org> | 2006-09-06 20:05:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-09-06 20:05:58 (GMT) |
commit | 4e933137af2e880b53afe5396101c44846dec9bd (patch) | |
tree | b3427bcc6fb3495a3ac1ab7e82eedd833b98d399 /Lib/logging | |
parent | 38f6237dfe1355192a11fe004d32f547cd1eadbd (diff) | |
download | cpython-4e933137af2e880b53afe5396101c44846dec9bd.zip cpython-4e933137af2e880b53afe5396101c44846dec9bd.tar.gz cpython-4e933137af2e880b53afe5396101c44846dec9bd.tar.bz2 |
Fix missing import of the types module in logging.config.
Diffstat (limited to 'Lib/logging')
-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 5ea0d15..f14eb12 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 |