aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PVRState.py
blob: 891379ca8a8578eb054ee9daab7e7b5550eba4b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from Screen import Screen

from Components.Label import Label

class PVRState(Screen):
	def __init__(self, session):
		Screen.__init__(self, session)
		self["state"] = Label(text="")

class TimeshiftState(PVRState):
	pass