log_channel.py
changeset 86 645cf9c4441e
parent 65 8b50694f841e
child 90 275a675712f1
--- a/log_channel.py	Tue Feb 10 22:59:52 2009 +0200
+++ b/log_channel.py	Tue Feb 10 23:00:11 2009 +0200
@@ -14,10 +14,14 @@
             Initialize this channel from the given identifier key, network name, channel name, and LogSource
         """
         
+        # store
         self.id = id
         self.network = network
         self.name = name
         self.source = source
+
+        # bind source
+        self.source.bind_channel(self)
     
     @property
     def title (self) :