aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PVRState.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/PVRState.py')
-rw-r--r--lib/python/Screens/PVRState.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py
new file mode 100644
index 00000000..6ec0b0be
--- /dev/null
+++ b/lib/python/Screens/PVRState.py
@@ -0,0 +1,11 @@
+from Screen import Screen
+
+from Components.Label import Label
+
+from enigma import *
+
+class PVRState(Screen):
+ def __init__(self, session):
+ Screen.__init__(self, session)
+
+ self["state"] = Label(text="blub")