Author: dmeyer
Date: Sun Mar 11 16:30:28 2007
New Revision: 9319

Modified:
   trunk/tvserver/src/epg.py

Log:
show possible exception

Modified: trunk/tvserver/src/epg.py
==============================================================================
--- trunk/tvserver/src/epg.py   (original)
+++ trunk/tvserver/src/epg.py   Sun Mar 11 16:30:28 2007
@@ -215,7 +215,12 @@
 
             if kaa.epg.guide.status == kaa.epg.CONNECTED:
                 log.info('start epg update on %s', name)
-                yield kaa.epg.guide.update(name)
+                wait = kaa.epg.guide.update(name)
+                yield wait
+                try:
+                    wait()
+                except Exception, e:
+                    log.exception(e)
             log.info('done epg update on %s', name)
 
         log.info('epg update complete')

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to