use new box depending rcs in HelpMenu (not yet 100% correct, needs
[enigma2.git] / lib / python / Screens / PVRState.py
1 from Screen import Screen
2
3 from Components.Label import Label
4
5 class PVRState(Screen):
6         def __init__(self, session):
7                 Screen.__init__(self, session)
8                 self["state"] = Label(text="")
9
10 class TimeshiftState(PVRState):
11         def __init__(self, session):
12                 PVRState.__init__(self, session)