summaryrefslogtreecommitdiff
path: root/Lib/logging/config.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-09-06 20:05:58 +0000
committerGeorg Brandl <georg@python.org>2006-09-06 20:05:58 +0000
commit4e933137af2e880b53afe5396101c44846dec9bd (patch)
treeb3427bcc6fb3495a3ac1ab7e82eedd833b98d399 /Lib/logging/config.py
parent38f6237dfe1355192a11fe004d32f547cd1eadbd (diff)
downloadcpython-git-4e933137af2e880b53afe5396101c44846dec9bd.tar.gz
Fix missing import of the types module in logging.config.
Diffstat (limited to 'Lib/logging/config.py')
-rw-r--r--Lib/logging/config.py2
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