Fixed an uncaught exception.

This commit is contained in:
Jeremy Fincher 2004-09-16 13:47:01 +00:00
parent cf3b59d516
commit 11300e1845
1 changed files with 2 additions and 1 deletions

View File

@ -453,7 +453,8 @@ class Channel(callbacks.Privmsg):
message isn't sent in the channel itself.
"""
(nickOrHostmask, expires) = privmsgs.getArgs(args, optional=1)
if ircutils.isNick(nickOrHostmask):
if ircutils.isNick(nickOrHostmask) and \
nickOrHostmask in irc.state.nicksToHostmasks:
banmask = ircutils.banmask(irc.state.nickToHostmask(nickOrHostmask))
elif ircutils.isUserHostmask(nickOrHostmask):
banmask = nickOrHostmask