From 52f6b6d500c428602420538c7e1fd5f4d312c613 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 18 Feb 2009 00:22:55 +0000 Subject: #5297: fix example. --- Doc/library/socketserver.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index 6ae9038..a4f181b 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -517,7 +517,7 @@ An example for the :class:`ThreadingMixIn` class:: # Exit the server thread when the main thread terminates server_thread.setDaemon(True) server_thread.start() - print "Server loop running in thread:", t.getName() + print "Server loop running in thread:", server_thread.getName() client(ip, port, "Hello World 1") client(ip, port, "Hello World 2") -- cgit v0.12