From 2bcdcd5f22ad50e9bb1b4387e37837c8fadc3bb2 Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sat, 27 May 2023 22:16:31 -0400 Subject: [PATCH] Fixed typo --- ircp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircp.py b/ircp.py index 2f58534..2b020bb 100644 --- a/ircp.py +++ b/ircp.py @@ -170,7 +170,7 @@ class probe: 'user': settings.username if settings.username else rndnick(), 'real': settings.realname if settings.realname else rndnick() } - self.nickname = idenity['nick'] + self.nickname = identity['nick'] self.reader, self.writer = await asyncio.wait_for(asyncio.open_connection(**options), throttle.timeout) if not fallback: self.snapshot['ssl'] = True