X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/1837e66b4c16260152cc9e98d7331dea368ea565..1c21fe13bb453d0f11c8a40461b3bfe7dba5cef1:/lib/python/Screens/PVRState.py diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py index b2c8a4d9..8b90c420 100644 --- a/lib/python/Screens/PVRState.py +++ b/lib/python/Screens/PVRState.py @@ -1,18 +1,12 @@ from Screen import Screen from Components.Label import Label -from Components.Sources.CurrentService import CurrentService - -from enigma import * class PVRState(Screen): def __init__(self, session): Screen.__init__(self, session) - self["state"] = Label(text="") class TimeshiftState(PVRState): def __init__(self, session): PVRState.__init__(self, session) - - self["CurrentService"] = CurrentService(self.session.nav)