merge-requests/8/head
Bob Mottram 2020-08-24 21:05:10 +01:00
parent 26c74f91cb
commit f9067de19f
1 changed files with 1 additions and 1 deletions

View File

@ -8881,7 +8881,7 @@ class EpicyonServer(ThreadingHTTPServer):
def handle_error(self, request, client_address):
# surpress connection reset errors
cls, e = sys.exc_info()[:2]
if cls is socket.error or cls is ConnectionResetError:
if cls is ConnectionResetError:
print('ERROR: ' + str(cls) + ", " + str(e))
pass
else: