summaryrefslogtreecommitdiff
path: root/Lib/logging/config.py
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-12 02:11:22 +0000
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-12 02:11:22 +0000
commitd192c925ac0d8e7801462b71cd0be033ddb18103 (patch)
tree43eb5af5dc808d5d3c1892096ceed5fecdf3d60a /Lib/logging/config.py
parentfb9ce65a91d674b1a80174c70a025aee83783388 (diff)
downloadcpython-git-d192c925ac0d8e7801462b71cd0be033ddb18103.tar.gz
Updated all import statements to use the new socketserver module name.
Renamed socketserver module in its own documentation. Renamed documentation references.
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 c95842c7d9..33d6f2f27a 100644
--- a/Lib/logging/config.py
+++ b/Lib/logging/config.py
@@ -35,7 +35,7 @@ try:
except ImportError:
thread = None
-from SocketServer import ThreadingTCPServer, StreamRequestHandler
+from socketserver import ThreadingTCPServer, StreamRequestHandler
DEFAULT_LOGGING_CONFIG_PORT = 9030