commit | 71088cc200c9196a82a13687cd287d4e3a010d73 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Fri Sep 19 21:49:37 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Fri Sep 19 21:49:37 2008 +0000 |
tree | 61caa682518e658938df52ecda84f0c69bbd679c | |
parent | 8a2e90e5e7375dd777769295d03624c0006f69a6 [diff] [blame] |
fix #3628; idle wouldn't start because of a typo
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index e2e9f69..62dc316 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py
@@ -73,7 +73,7 @@ sockthread = threading.Thread(target=manage_socket, name='SockThread', args=((LOCALHOST, port),)) - sockthread.set_daemon(True) + sockthread.daemon = True sockthread.start() while 1: try: