mirror of
git://git.acid.vegas/IRCP.git
synced 2024-11-22 16:06:41 +00:00
Fixed error_conn to errors_conn
This commit is contained in:
parent
751b28eac5
commit
60ee352e9f
4
ircp.py
4
ircp.py
@ -153,12 +153,12 @@ class probe:
|
||||
try:
|
||||
await self.connect()
|
||||
except Exception as ex:
|
||||
if settings.error_conn:
|
||||
if settings.errors_conn:
|
||||
error(self.display + 'failed to connect using SSL/TLS', ex)
|
||||
try:
|
||||
await self.connect(True)
|
||||
except Exception as ex:
|
||||
if settings.error_conn:
|
||||
if settings.errors_conn:
|
||||
error(self.display + 'failed to connect', ex)
|
||||
|
||||
async def raw(self, data):
|
||||
|
Loading…
Reference in New Issue
Block a user