IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit dd94aabfcbfc29fc3655e58a40fa418cd05c6cda
parent 72df0c35918445a8139917e01001397e57a6ad96 Author: acidvegas <acid.vegas@acid.vegas> Date: Wed, 28 Jun 2023 23:09:59 -0400 Fixed typo in RPL_ENDOFWHO Diffstat:
|
1 file changed, 2 insertions(+), 3 deletions(-) |
diff --git 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 |