Hello,

I noticed that in freevo-2 when I ran grab_tv it never updated the
information in the tv guide until I restarted freevo.  This should fix
that problem:

--- /root/freevo/src/tv/tvguide.py      2004-12-28 15:50:01.000000000 -0400
+++ tvguide.py  2005-01-20 13:49:36.093661032 -0400
@@ -39,6 +39,8 @@

 # freevo imports
 import gui
+# for channel listing refresh
+import config

 from event import *
 from application import MenuApplication
@@ -92,6 +94,8 @@
         """
         self.channel = pyepg.get_channel()
         self.selected = ProgramItem(self.channel[self.current_time])
+        # refresh channel listing incase tv_grab was run
+       config.channels.refresh()
         self.refresh()
         MenuApplication.show(self)


Thanks to rob for pointing me at the solution.

Thanks
--Andrew


-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
Freevo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to