[Python-checkins] r69728 - python/trunk/Doc/library/socketserver.rst

georg.brandl python-checkins at python.org
Wed Feb 18 01:22:56 CET 2009


Author: georg.brandl
Date: Wed Feb 18 01:22:55 2009
New Revision: 69728

Log:
#5297: fix example.


Modified:
   python/trunk/Doc/library/socketserver.rst

Modified: python/trunk/Doc/library/socketserver.rst
==============================================================================
--- python/trunk/Doc/library/socketserver.rst	(original)
+++ python/trunk/Doc/library/socketserver.rst	Wed Feb 18 01:22:55 2009
@@ -517,7 +517,7 @@
        # 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")


More information about the Python-checkins mailing list