From bd755e137ffa034007a77d75fbd00d21e759163e Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 5 Jul 2015 13:07:18 -0700 Subject: [PATCH] pr/inspircd: fix a typo in removeClient --- protocols/inspircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/inspircd.py b/protocols/inspircd.py index 83fcbc6..11d847a 100644 --- a/protocols/inspircd.py +++ b/protocols/inspircd.py @@ -74,7 +74,7 @@ def removeClient(irc, numeric): Removes a client from our internal databases, regardless of whether it's one of our pseudoclients or not.""" for v in irc.channels.values(): - v.removeuser(source) + v.removeuser(numeric) sid = numeric[:3] print('Removing client %s from irc.users' % numeric) del irc.users[numeric]