kill another set_daemon instance

This commit is contained in:
Benjamin Peterson 2008-09-20 12:52:07 +00:00
parent 71088cc200
commit 8b6dc5cfab

View file

@ -566,7 +566,7 @@ class ThreadingMixIn:
t = threading.Thread(target = self.process_request_thread,
args = (request, client_address))
if self.daemon_threads:
t.set_daemon(True)
t.daemon = True
t.start()