diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-01-10 16:13:12 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-01-10 16:13:12 +0000 |
| commit | cd548f05df305c56f7919685499c85998d7c0067 (patch) | |
| tree | 73aa045d0e5d4f4f98de3f5fd9b805daf6481717 /lib/python/Components | |
| parent | 053b66b521438dee9485a0ef16e2e7292af49b51 (diff) | |
| download | enigma2-cd548f05df305c56f7919685499c85998d7c0067.tar.gz enigma2-cd548f05df305c56f7919685499c85998d7c0067.zip | |
epg fixes
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/EpgList.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py index 2f729842..97ed0a03 100644 --- a/lib/python/Components/EpgList.py +++ b/lib/python/Components/EpgList.py @@ -200,7 +200,7 @@ class EPGList(HTMLComponent, GUIComponent): def fillMultiEPG(self, services, stime=-1): t = time() test = [ (service.ref.toString(), 0, stime) for service in services ] - test.insert(0, '0RIBDTCn') + test.insert(0, 'X0RIBDTCn') self.list = self.queryEPG(test) self.l.setList(self.list) print time() - t @@ -209,7 +209,7 @@ class EPGList(HTMLComponent, GUIComponent): def updateMultiEPG(self, direction): t = time() test = [ x[3] and (x[1], direction, x[3]) or (x[1], direction, 0) for x in self.list ] - test.insert(0, 'RIBDTCn') + test.insert(0, 'XRIBDTCn') tmp = self.queryEPG(test) cnt=0 for x in tmp: |
