Merge remote-tracking branch 'origin/bug_453_multiepg_no_more_ask_bouquet'
[vuplus_dvbapp] / 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         pass
12