diff --git a/plugins/Channel/plugin.py b/plugins/Channel/plugin.py index 32fb1db0a..84f8d6b14 100644 --- a/plugins/Channel/plugin.py +++ b/plugins/Channel/plugin.py @@ -789,7 +789,8 @@ class Channel(callbacks.Plugin): msg.args[0] != channel and \ (ircutils.isChannel(msg.args[0]) or \ msg.nick not in irc.state.channels[channel].users): - irc.error('You don\'t have access to that information.') + irc.error('You don\'t have access to that information.', + Raise=True) L = list(irc.state.channels[channel].users) utils.sortBy(str.lower, L) irc.reply(utils.str.commaAndify(L))