Skip to content
Snippets Groups Projects
Commit 75382d1a authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Fixed endless loop in server

parent 0fc7891e
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,8 @@ if __name__ == '__main__':
while True:
try:
sock, address = server.accept()
except KeyboardInterrupt:
raise
except:
continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment