From 952543d35a50ef9ea550ac921fad1beaac474f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sat, 27 Apr 2019 20:03:08 +0300 Subject: [PATCH] Wait before joining chans, so that we auth correctly --- ircbot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ircbot.py b/ircbot.py index 8df3646..53f8749 100755 --- a/ircbot.py +++ b/ircbot.py @@ -107,6 +107,7 @@ class Connhandler(threading.Thread): self.send(i) f.close() + time.sleep(10) # Wait for nickserv auth to take effect for i in self.chan.split(' '): self.send('JOIN %s' % i)