Author: dmeyer
Date: Wed Apr 18 18:11:40 2007
New Revision: 9473

Modified:
   trunk/tvserver/src/epg.py

Log:
fix crashes because of kaa.epg updates

Modified: trunk/tvserver/src/epg.py
==============================================================================
--- trunk/tvserver/src/epg.py   (original)
+++ trunk/tvserver/src/epg.py   Wed Apr 18 18:11:40 2007
@@ -171,7 +171,7 @@
                 if p.stop < now:
                     # do not add old stuff
                     continue
-                rec = Recording(p.title, p.channel.id, fav.priority,
+                rec = Recording(p.title, p.channel.name, fav.priority,
                                 p.start, p.stop,
                                 info={ "episode":p.episode,
                                        "subtitle":p.subtitle,
@@ -208,7 +208,7 @@
         # start update
         # FIXME: latest kaa.epg changes do not block the rpc
         # until the update is complete. That is a bug here!
-        wait = kaa.epg.guide.update(name)
+        wait = kaa.epg.guide.update()
         yield wait
         try:
             wait()

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to