From 5daaa14825f33fef59f88a2af3cd94211df45a22 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 25 Jan 2018 14:09:19 +0100 Subject: [PATCH] NickAuth: Fix NameError caused by e7329316880c486769d260a0d0d05a9d450ea5c1. --- plugins/NickAuth/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/NickAuth/plugin.py b/plugins/NickAuth/plugin.py index 214c6c7e3..32116a6d4 100644 --- a/plugins/NickAuth/plugin.py +++ b/plugins/NickAuth/plugin.py @@ -203,7 +203,7 @@ class NickAuth(callbacks.Plugin): return # irc.nick 1 user ip host nick status account gecos - (n, t, user, ip, host, nick, status, account, gecos) = msg.args + (n, t, ident, ip, host, nick, status, account, gecos) = msg.args prefix = '%s!%s@%s' % (nick, ident, host) user = ircdb.users.getUserFromNick(irc.network, account)