diff --git a/core/irc.py b/core/irc.py index a98a105..b9f898f 100644 --- a/core/irc.py +++ b/core/irc.py @@ -188,7 +188,7 @@ class IRC(object): self.cmd("NICK", [nick]) def join(self, channel): - self.cmd("JOIN", [channel]) + self.cmd("JOIN", channel.split(" ")) # [chan, password] def msg(self, target, text): self.cmd("PRIVMSG", [target, text])