More stability.

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

13
list.py
View File

@ -126,8 +126,13 @@ def client():
client_socket.close()
if mode == 0:
print('To start own server change python file.\n')
client()
print('To start own server change python file.\n')
client()
else:
server()
while True:
try:
server()
except KeyboardInterrupt:
exit()
except:
pass