From b5155f2aa14aedc29210d488c05f706a1f877698 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 2 Jul 2012 17:42:28 +0200 Subject: [PATCH] Don't add an extra colon to numerics --- ircd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd.py b/ircd.py index b21a49e..3acc5da 100755 --- a/ircd.py +++ b/ircd.py @@ -101,7 +101,7 @@ class client: self.send_chunk(":%s NOTICE %s" % (config_ownhost, notice)) def send_numeric(self, numeric, notice): - self.send_chunk(":%s NOTICE %s :%s" % (config_ownhost, numeric, notice)) + self.send_chunk(":%s NOTICE %s %s" % (config_ownhost, numeric, notice)) def process_data(self, data): self.buff += data