socketserver renaming reversal part 3: move the module into the right
place and fix all references to it.  Closes #2926.
diff --git a/Lib/logging/config.py b/Lib/logging/config.py
index b4c52b4..dc13723 100644
--- a/Lib/logging/config.py
+++ b/Lib/logging/config.py
@@ -35,7 +35,7 @@
 except ImportError:
     thread = None
 
-from socketserver import ThreadingTCPServer, StreamRequestHandler
+from SocketServer import ThreadingTCPServer, StreamRequestHandler
 
 
 DEFAULT_LOGGING_CONFIG_PORT = 9030