ircmsgs: Fix typo.

This commit is contained in:
Valentin Lorentz 2013-04-06 16:04:56 +00:00
parent 0150c79924
commit f4bf62ab6b

View File

@ -615,7 +615,7 @@ def notice(recipient, s, prefix='', msg=None):
def join(channel, key=None, prefix='', msg=None):
"""Returns a JOIN to a channel"""
if conf.supybot.protocols.irc.strictRfc():
assert isChannels(channel), repr(channel)
assert areChannels(channel), repr(channel)
if msg and not prefix:
prefix = msg.prefix
if key is None: