This works for me in bot.py, IRCBot class: ``` def on_kick(self, connection, event): """Join the correct channel again""" if irc.client.is_channel(self.__config.CHANNEL): time.sleep(31) connection.join(self.__config.CHANNEL) ```