From 71088cc200c9196a82a13687cd287d4e3a010d73 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 19 Sep 2008 21:49:37 +0000 Subject: [PATCH] fix #3628; idle wouldn't start because of a typo --- Lib/idlelib/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index e2e9f69960f..62dc316abe5 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -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: