adding colon to ping reply message

This commit is contained in:
rootcoma 2013-11-19 16:01:09 -08:00
parent e415c22784
commit 0fcecf343e
1 changed files with 2 additions and 2 deletions

View File

@ -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: