created Version 1.0

This commit is contained in:
romanschenk37 2022-03-10 22:07:48 +01:00
parent 752208fe7e
commit 427f21e41d
1 changed files with 5 additions and 1 deletions

View File

@ -119,7 +119,10 @@ def command():
stopThread = True stopThread = True
outputtext = outputtext + "Application will stop" + "\n" outputtext = outputtext + "Application will stop" + "\n"
text1.config(text=outputtext) text1.config(text=outputtext)
thread_search_adresses.join() try:
thread_search_adresses.join()
except:
pass
root.quit() root.quit()
driver.quit() driver.quit()
elif(step == 0): elif(step == 0):
@ -166,6 +169,7 @@ def command():
exit = True exit = True
def command_exit(): def command_exit():
global exit
exit = True exit = True
command() command()