aboutsummaryrefslogtreecommitdiff
path: root/IRCChannel.py
diff options
context:
space:
mode:
Diffstat (limited to 'IRCChannel.py')
-rw-r--r--IRCChannel.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/IRCChannel.py b/IRCChannel.py
index f48f9d96..14de133f 100644
--- a/IRCChannel.py
+++ b/IRCChannel.py
@@ -1,7 +1,9 @@
+import uuid
import IRCLog
class Channel(object):
def __init__(self, name, server, bot):
+ self.id = uuid.uuid1().hex
self.name = name.lower()
self.server = server
self.bot = bot