Use thread.join() instead (#219)

This commit is contained in:
Handyman 2017-04-14 02:37:32 -07:00 committed by 破娃酱
parent 1e7e707024
commit 036df8aac6

View file

@ -55,7 +55,7 @@ def main():
thread.start() thread.start()
try: try:
while thread.is_alive(): while thread.is_alive():
time.sleep(10) thread.join(10.0)
except (KeyboardInterrupt, IOError, OSError) as e: except (KeyboardInterrupt, IOError, OSError) as e:
import traceback import traceback
traceback.print_exc() traceback.print_exc()