summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-19 21:49:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-19 21:49:37 (GMT)
commit71088cc200c9196a82a13687cd287d4e3a010d73 (patch)
tree61caa682518e658938df52ecda84f0c69bbd679c /Lib/idlelib
parent8a2e90e5e7375dd777769295d03624c0006f69a6 (diff)
downloadcpython-71088cc200c9196a82a13687cd287d4e3a010d73.zip
cpython-71088cc200c9196a82a13687cd287d4e3a010d73.tar.gz
cpython-71088cc200c9196a82a13687cd287d4e3a010d73.tar.bz2
fix #3628; idle wouldn't start because of a typo
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/run.py2
1 files changed, 1 insertions, 1 deletions
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 @@ 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: