X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/aa3e781f31a04223416f0a34b25ab95fc0bef429..32e4324b9b5e615a84885b9132505e4706ededfe:/lib/python/Components/EventInfo.py?ds=sidebyside diff --git a/lib/python/Components/EventInfo.py b/lib/python/Components/EventInfo.py index 125310be..c8e5a13f 100644 --- a/lib/python/Components/EventInfo.py +++ b/lib/python/Components/EventInfo.py @@ -1,5 +1,7 @@ from PerServiceDisplay import * +from enigma import iServiceInformationPtr, eServiceEventPtr + class EventInfo(PerServiceDisplay): Now = 0 Next = 1 @@ -21,14 +23,14 @@ class EventInfo(PerServiceDisplay): service = self.navcore.getCurrentService() if service != None: - if not service.info(info): - ev = eServiceEventPtr() - if info.getEvent(ev, self.now_or_next & 1) == 0: + info = service.info() + if info is not None: + ev = info.getEvent(self.now_or_next & 1) + if ev is not None: if self.now_or_next & 2: self.setText("%d min" % (ev.m_duration / 60)) else: self.setText(ev.m_event_name) - print "new event info in EventInfo! yeah!" def stopEvent(self): self.setText(