Reply with an error when getBanmask doesn't have a valid channel.

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit 459bc616b1)
This commit is contained in:
James Vega 2009-09-02 07:40:33 -04:00
parent bdf9e8836b
commit 5a0f96fc8e
1 changed files with 4 additions and 1 deletions

View File

@ -280,7 +280,10 @@ def getBanmask(irc, msg, args, state):
getChannel(irc, msg, args, state)
channel = state.channel
banmaskstyle = conf.supybot.protocols.irc.banmask
state.args[-1] = banmaskstyle.makeBanmask(state.args[-1])
try:
state.args[-1] = banmaskstyle.makeBanmask(state.args[-1])
except AssertionError:
state.errorInvalid('channel', channel)
def getUser(irc, msg, args, state):
try: