From 0fcecf343ee1cbc1f8be047e7f2cad4dfe3fd7ba Mon Sep 17 00:00:00 2001 From: rootcoma Date: Tue, 19 Nov 2013 16:01:09 -0800 Subject: [PATCH] adding colon to ping reply message --- plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.py b/plugin.py index f6f1777..580b41f 100644 --- a/plugin.py +++ b/plugin.py @@ -163,9 +163,9 @@ class TriviaTime(callbacks.Plugin): channel = name break if channel == '': - irc.sendMsg(ircmsgs.notice(username, '%s Ping reply: %0.2f seconds' % (username, pingTime))) + irc.sendMsg(ircmsgs.notice(username, '%s: Ping reply: %0.2f seconds' % (username, pingTime))) else: - irc.sendMsg(ircmsgs.privmsg(channel, '%s Ping reply: %0.2f seconds' % (username, pingTime))) + irc.sendMsg(ircmsgs.privmsg(channel, '%s: Ping reply: %0.2f seconds' % (username, pingTime))) def addZeroWidthSpace(self, text): if len(text) <= 1: