fix #3628; idle wouldn't start because of a typo

This commit is contained in:
Benjamin Peterson 2008-09-19 21:49:37 +00:00
parent 8a2e90e5e7
commit 71088cc200
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def main(del_exitfunc=False):
sockthread = threading.Thread(target=manage_socket,
name='SockThread',
args=((LOCALHOST, port),))
sockthread.set_daemon(True)
sockthread.daemon = True
sockthread.start()
while 1:
try: