From 120a2f37174b5b92c25a822897aea3f26d450a96 Mon Sep 17 00:00:00 2001 From: "Vgr E.Barry" Date: Mon, 27 Jul 2015 09:26:40 -0400 Subject: [PATCH] Fix error (blame @nyuszika7h) --- oyoyo/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oyoyo/client.py b/oyoyo/client.py index ce0465f..1be1e7b 100644 --- a/oyoyo/client.py +++ b/oyoyo/client.py @@ -273,7 +273,7 @@ class IRCClient(object): def kick(self, chan, nick, msg=""): self.send("KICK", chan, nick, ":"+msg) def ns_identify(self, account, passwd, nickserv, command): - self.msg(nickserv, command.format(account=self.account, password=passwd)) + self.msg(nickserv, command.format(account=account, password=passwd)) def ns_ghost(self, nickserv, command): if command: self.msg(nickserv, command.format(nick=self.nickname))