From a1a148adbc73e15f1731f4bb2fb22216ac002585 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 11 Jan 2014 13:19:09 +0100 Subject: news: action instead of send from controller --- news/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'news') diff --git a/news/controller.py b/news/controller.py index 584d020f..cf032e65 100755 --- a/news/controller.py +++ b/news/controller.py @@ -23,7 +23,7 @@ class NewsBot(irc.bot.SingleServerIRCBot): def send(self, target, string): for line in string.split('\n'): - self.connection.privmsg(target, line) + self.connection.action(target, line) sleep(1) def on_privmsg(self, connection, event): -- cgit v1.2.3