From b02c5fb6dd2ba488edd4fe6dd93ac6eafd4b130e Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Tue, 3 Jul 2012 01:37:38 +0200 Subject: [PATCH] Fix broken lusers call --- ircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd.py b/ircd.py index 39aa124..d8ec216 100755 --- a/ircd.py +++ b/ircd.py @@ -191,7 +191,7 @@ class user: self.client.send_numeric("451", "%s :You have not completed the challenge PING." % data[0]) else: if data[0] == "LUSERS": - send_lusers() + self.send_lusers() else: self.client.send_numeric("421", "%s :Unknown command." % data[0])