IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 60ee352e9f3c9f1c2ebc956538682afbe536795e
parent 751b28eac5a6ba3671a71797ab71e58fd9607edd Author: acidvegas <acid.vegas@acid.vegas> Date: Mon, 29 May 2023 21:27:18 -0400 Fixed error_conn to errors_conn Diffstat:
|
1 file changed, 2 insertions(+), 2 deletions(-) |
diff --git 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): |