From: Benjamin Peterson Date: Fri, 19 Sep 2008 21:49:37 +0000 (+0000) Subject: fix #3628; idle wouldn't start because of a typo X-Git-Tag: v3.0rc2~175 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71088cc200c9196a82a13687cd287d4e3a010d73;p=python fix #3628; idle wouldn't start because of a typo --- diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index e2e9f69960..62dc316abe 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: