More stability.

This commit is contained in:
t 2023-10-21 18:18:12 +03:00
parent 800885367d
commit 6e529c4bc7

View File

@ -129,5 +129,10 @@ if mode == 0:
print('To start own server change python file.\n') print('To start own server change python file.\n')
client() client()
else: else:
while True:
try:
server() server()
except KeyboardInterrupt:
exit()
except:
pass