X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ed40f6f85c9c07c3c1224ae20601082c0309a631..cd176a16cb54350617ea202de983e8d643978971:/lib/python/Screens/PVRState.py diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py index f7b2abf7..891379ca 100644 --- a/lib/python/Screens/PVRState.py +++ b/lib/python/Screens/PVRState.py @@ -1,16 +1,12 @@ from Screen import Screen from Components.Label import Label -from Components.Sources.CurrentService import CurrentService 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) + pass +