This commit is contained in:
Louis Vézina 2020-04-27 23:03:24 -04:00
parent fe2a4aa067
commit 31ab819079
1 changed files with 4 additions and 1 deletions

View File

@ -80,6 +80,9 @@ if __name__ == '__main__':
while True:
check_status()
try:
time.sleep(5)
if sys.platform.startswith('win'):
time.sleep(5)
else:
os.wait()
except (KeyboardInterrupt, SystemExit):
pass