Factoids: add missing Raise in requireVoice checks

Reported by braimee on IRC.
This commit is contained in:
James Lu 2016-09-25 17:11:14 -07:00 committed by GitHub
parent d7099794bc
commit cd853f3e31
1 changed files with 2 additions and 2 deletions

View File

@ -278,7 +278,7 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler):
def learn(self, irc, msg, args, channel, key, factoid):
if self.registryValue('requireVoice', channel) and \
not irc.state.channels[channel].isVoicePlus(msg.nick):
irc.error(_('You have to be at least voiced to teach factoids.'))
irc.error(_('You have to be at least voiced to teach factoids.'), Raise=True)
# if neither key nor factoid exist, add them.
# if key exists but factoid doesn't, add factoid, link it to existing key
@ -657,7 +657,7 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler):
"""
if self.registryValue('requireVoice', channel) and \
not irc.state.channels[channel].isVoicePlus(msg.nick):
irc.error(_('You have to be at least voiced to remove factoids.'))
irc.error(_('You have to be at least voiced to remove factoids.'), Raise=True)
number = None
if len(words) > 1:
if words[-1].isdigit():