From e5bac7e02340ff0afda51ccc44cce6ea6cc5ae69 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 11 Aug 2013 11:20:36 +0000 Subject: [PATCH] Aka: Fix previous commit. --- plugins/Aka/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Aka/plugin.py b/plugins/Aka/plugin.py index fbcaa866d..0c882f306 100644 --- a/plugins/Aka/plugin.py +++ b/plugins/Aka/plugin.py @@ -375,8 +375,8 @@ class Aka(callbacks.Plugin): alias += ' $*' try: self._add_aka(channel, name, alias) - self.log.info('Adding Aka %q for %q (from %s)' % ( - name, alias, msg.prefix)) + self.log.info('Adding Aka %q for %q (from %s)', + name, alias, msg.prefix) irc.replySuccess() except AkaError as e: irc.error(str(e)) @@ -398,7 +398,7 @@ class Aka(callbacks.Plugin): channel = arg try: self._remove_aka(channel, name) - self.log.info('Removing Aka %q (from %s)' % (name, msg.prefix)) + self.log.info('Removing Aka %q (from %s)', name, msg.prefix) irc.replySuccess() except AkaError as e: irc.error(str(e))