#5297: fix example.

This commit is contained in:
Georg Brandl 2009-02-18 00:22:55 +00:00
parent 0e5001eff9
commit 52f6b6d500
1 changed files with 1 additions and 1 deletions

View File

@ -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")