From 60ee352e9f3c9f1c2ebc956538682afbe536795e Mon Sep 17 00:00:00 2001 From: acidvegas Date: Mon, 29 May 2023 21:27:18 -0400 Subject: [PATCH] Fixed error_conn to errors_conn --- ircp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ircp.py b/ircp.py index 6891c0a..6d3b529 100644 --- a/ircp.py +++ b/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):