diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-12 02:11:22 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-12 02:11:22 (GMT) |
commit | d192c925ac0d8e7801462b71cd0be033ddb18103 (patch) | |
tree | 43eb5af5dc808d5d3c1892096ceed5fecdf3d60a /Lib/logging | |
parent | fb9ce65a91d674b1a80174c70a025aee83783388 (diff) | |
download | cpython-d192c925ac0d8e7801462b71cd0be033ddb18103.zip cpython-d192c925ac0d8e7801462b71cd0be033ddb18103.tar.gz cpython-d192c925ac0d8e7801462b71cd0be033ddb18103.tar.bz2 |
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')
-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 c95842c..33d6f2f 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 |