summaryrefslogtreecommitdiffstats
path: root/Lib/SocketServer.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2007-03-12 18:07:52 (GMT)
committerTim Peters <tim.peters@gmail.com>2007-03-12 18:07:52 (GMT)
commitea5962f86e8550978446724dadcacd60e03feef2 (patch)
treea133c011e4a81da13347903bd8d99ef1e2ddf898 /Lib/SocketServer.py
parentcb637c9ea341b5b1fe94eec78085d2851119161d (diff)
downloadcpython-ea5962f86e8550978446724dadcacd60e03feef2.zip
cpython-ea5962f86e8550978446724dadcacd60e03feef2.tar.gz
cpython-ea5962f86e8550978446724dadcacd60e03feef2.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r--Lib/SocketServer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
index f0f471a..5506aa5 100644
--- a/Lib/SocketServer.py
+++ b/Lib/SocketServer.py
@@ -328,8 +328,8 @@ class TCPServer(BaseServer):
self.socket = socket.socket(self.address_family,
self.socket_type)
if bind_and_activate:
- self.server_bind()
- self.server_activate()
+ self.server_bind()
+ self.server_activate()
def server_bind(self):
"""Called by constructor to bind the socket.