summaryrefslogtreecommitdiffstats
path: root/news
diff options
context:
space:
mode:
Diffstat (limited to 'news')
-rwxr-xr-xnews/controller.py2
1 files changed, 1 insertions, 1 deletions
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):