Update of /cvsroot/vdrpylib/vdrpylib/vdr
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8466/vdr
Modified Files:
vdr.py
Log Message:
Set channel id if its not there.
Index: vdr.py
===================================================================
RCS file: /cvsroot/vdrpylib/vdrpylib/vdr/vdr.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** vdr.py 1 Dec 2004 18:51:23 -0000 1.8
--- vdr.py 2 Dec 2004 02:13:47 -0000 1.9
***************
*** 296,299 ****
--- 296,302 ----
channel.sid, channel.rid], '-')
+ if not channel.id:
+ channel.id = key
+
self.channels[key] = channel
|