aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-10-07 09:10:23 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-10-07 09:10:23 +0000
commitaf399f0121b6b53944f9a09a83e6ced078dc0ef3 (patch)
treeac39aac04a56eef86c70c50c0288de6fae49b31b /lib/python
parent3a32ec6cc71286248042152aa3aed2ed2c75d55e (diff)
downloadenigma2-af399f0121b6b53944f9a09a83e6ced078dc0ef3.tar.gz
enigma2-af399f0121b6b53944f9a09a83e6ced078dc0ef3.zip
use session.CurrentService in PVRState
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/PVRState.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py
index f7b2abf7..8b90c420 100644
--- a/lib/python/Screens/PVRState.py
+++ b/lib/python/Screens/PVRState.py
@@ -1,16 +1,12 @@
from Screen import Screen
from Components.Label import Label
-from Components.Sources.CurrentService import CurrentService
class PVRState(Screen):
def __init__(self, session):
Screen.__init__(self, session)
-
self["state"] = Label(text="")
class TimeshiftState(PVRState):
def __init__(self, session):
PVRState.__init__(self, session)
-
- self["CurrentService"] = CurrentService(self.session.nav)