]> granicus.if.org Git - python/commitdiff
fix #3628; idle wouldn't start because of a typo
authorBenjamin Peterson <benjamin@python.org>
Fri, 19 Sep 2008 21:49:37 +0000 (21:49 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 19 Sep 2008 21:49:37 +0000 (21:49 +0000)
Lib/idlelib/run.py

index e2e9f69960feb31f6c8e023ec045bd9072326adc..62dc316abe5bddf1dd519193f5f99f8585e9f541 100644 (file)
@@ -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: