Commit 0fb2b335 authored by Benjamin Peterson's avatar Benjamin Peterson

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

parent 0eaf1b56
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment