Explorar el Código

Catch SSL/TLS errors

master
JustAnotherArchivist hace 3 años
padre
commit
0619ff40db
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      irclog.py

+ 1
- 1
irclog.py Ver fichero

@@ -442,7 +442,7 @@ class IRCClient:
finally:
if not connectionClosedEvent.is_set():
await self._protocol.quit()
except (ConnectionRefusedError, asyncio.TimeoutError) as e:
except (ConnectionRefusedError, ssl.SSLError, asyncio.TimeoutError) as e:
self.logger.error(str(e))
await asyncio.wait((asyncio.sleep(5), sigintEvent.wait()), return_when = asyncio.FIRST_COMPLETED)
if sigintEvent.is_set():


Cargando…
Cancelar
Guardar