Use False instead of 0.

This commit is contained in:
Fred Drake 2002-11-22 14:22:49 +00:00
parent 62a103b2fc
commit 132e0e824b
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ class ThreadingMixIn:
# Decides how threads will act upon termination of the
# main process
daemon_threads = 0
daemon_threads = False
def process_request_thread(self, request, client_address):
"""Same as in BaseServer but as a thread.