X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/747171602db43ec70d198ea092f5c18f70504855..7466abeda3437afb71ce9ab8c0917cd8ea14482c:/lib/python/Components/EpgList.py diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py index 861063a3..82367ecc 100644 --- a/lib/python/Components/EpgList.py +++ b/lib/python/Components/EpgList.py @@ -234,11 +234,11 @@ class EPGList(HTMLComponent, GUIComponent): return self.epgcache.lookupEvent(list) return [ ] - def fillMultiEPG(self, services): + def fillMultiEPG(self, services, stime=-1): t = time() test = [ '0RIBDTCN' ] for service in services: - tuple = ( service.ref.toString(), 0 ) + tuple = (service.ref.toString(), 0, stime) test.append( tuple ) self.list = self.queryEPG(test) self.l.setList(self.list)