From 1efd6c6c00bc3ea657299f7c4b1aad09b1682b8d Mon Sep 17 00:00:00 2001 From: GLolol Date: Mon, 21 Oct 2013 17:45:52 -0700 Subject: [PATCH] LinkRelay: fix text events --- LinkRelay/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LinkRelay/plugin.py b/LinkRelay/plugin.py index 74762e4..755b86a 100644 --- a/LinkRelay/plugin.py +++ b/LinkRelay/plugin.py @@ -267,7 +267,7 @@ class LinkRelay(callbacks.Plugin): msg.args[0]) s = '%(color)s' + _('KICK: %(kicked)s has been kicked from ' '%(channel)s%(sepTagc)s%(network)s by %(kicker)s' - '(%(message)s)') + ' (%(message)s)') self.sendToOthers(irc, msg.args[0], s, args) def doNick(self, irc, msg): @@ -292,7 +292,7 @@ class LinkRelay(callbacks.Plugin): if self.registryValue('hostmasks', msg.args[0]): args['userhost'] = ' (' + msg.user + '@' + msg.host + ')' s = '%(color)s' + _('QUIT: %(nick)s%(sepTagn)s%(network)s' - '%(userhost)s has quit (%(message)s)') + ' has quit (%(message)s)') self.sendToOthers(irc, None, s, args, msg.nick) self.addIRC(irc)