From efc52eb554ed397120647d0d60accc7ef0073afd Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Mon, 19 Mar 2012 15:31:19 +1300 Subject: [PATCH] Reverted earlier bugfix - this causes more issues then it solves --- core/irc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/irc.py b/core/irc.py index c7fdfe1..b14c828 100755 --- a/core/irc.py +++ b/core/irc.py @@ -180,7 +180,6 @@ class IRC(object): def set_nick(self, nick): self.cmd("NICK", [nick]) - self.nick = nick def join(self, channel): self.cmd("JOIN", [channel])