X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ab5217c2155e480f54fb7762b9362772beda9775..90a6f5184efbee4252e015a82aecd296749bcad3:/lib/python/Screens/PVRState.py diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py index 051d6288..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.ServicePosition import ServicePosition - -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["timeshift"] = ServicePosition(self.session.nav, ServicePosition.TYPE_RELATIVE)