Added an assert.

This commit is contained in:
Jeremy Fincher 2004-12-20 19:00:50 +00:00
parent 8b563876ea
commit d31ff4532a
1 changed files with 1 additions and 0 deletions

View File

@ -117,6 +117,7 @@ def get(group, channel=None):
if channel is None or not group.channelValue:
return group()
else:
assert ircutils.isChannel(channel)
return group.get(channel)()
###