diff options
Diffstat (limited to 'IRCChannel.py')
| -rw-r--r-- | IRCChannel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IRCChannel.py b/IRCChannel.py index 0dfd6884..00407772 100644 --- a/IRCChannel.py +++ b/IRCChannel.py @@ -1,9 +1,9 @@ import uuid -import IRCBuffer +import IRCBuffer, Utils class Channel(object): def __init__(self, name, id, server, bot): - self.name = name.lower() + self.name = Utils.irc_lower(name) self.id = id self.server = server self.bot = bot |
