git.cweiske.de
/
enigma2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of git.opendreambox.org:/git/enigma2
[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
pass
12