Kaydet (Commit) 71088cc2 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

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

üst 8a2e90e5
......@@ -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