From dd94aabfcbfc29fc3655e58a40fa418cd05c6cda Mon Sep 17 00:00:00 2001 From: acidvegas Date: Wed, 28 Jun 2023 23:09:59 -0400 Subject: [PATCH] Fixed typo in RPL_ENDOFWHO --- ircp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ircp.py b/ircp.py index 467b57b..ecbface 100644 --- a/ircp.py +++ b/ircp.py @@ -365,7 +365,7 @@ class probe: error(self.display + '\033[93mProxy Monitor detected\033[0m', nick) else: debug(f'{self.display}\033[34mWHOIS\033[0m {nick}') - elif event == 315 and len*args) >= 3: # RPL_ENDOFWHO + elif event == 315 and len(args) >= 3: # RPL_ENDOFWHO chan = args[3] await self.raw(f'MODE {chan} +b') await asyncio.sleep(throttle.commands) @@ -551,4 +551,4 @@ else: if settings.daemon: backup(time.strftime('%y%m%d-%H%M%S')) else: - break \ No newline at end of file + break