From a0ca3450f16f137cca98d19ff3851c3c91304103 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 22 Jan 2014 13:46:42 +0100 Subject: [PATCH] ChannelStats: Fix typo. --- plugins/ChannelStats/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ChannelStats/plugin.py b/plugins/ChannelStats/plugin.py index 1ea05eacd..1826873fa 100644 --- a/plugins/ChannelStats/plugin.py +++ b/plugins/ChannelStats/plugin.py @@ -359,7 +359,7 @@ class ChannelStats(callbacks.Plugin): the message isn't sent on the channel itself. """ if channel not in irc.state.channels: - irc.error(_('I am not in %s.', channel), Raise=True) + irc.error(_('I am not in %s.') % channel, Raise=True) elif msg.nick not in irc.state.channels[channel].users: irc.error(_('You must be in %s to use this command.') % channel, Raise=True)