aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/SimpleSummary.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-04-14 11:31:34 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-04-14 11:31:34 +0000
commitefc5aca651306518e6f21a6bd7cbfa1928821b60 (patch)
tree7bf20fee1b90414f8382711d7569b694196b53c1 /lib/python/Screens/SimpleSummary.py
parenta6709e2aea03a671e45b6b46a8d406de4b6daab1 (diff)
downloadenigma2-efc5aca651306518e6f21a6bd7cbfa1928821b60.tar.gz
enigma2-efc5aca651306518e6f21a6bd7cbfa1928821b60.zip
remove deprecated code (deprecation date was 2008-01 and 2008-02)
Diffstat (limited to 'lib/python/Screens/SimpleSummary.py')
-rw-r--r--lib/python/Screens/SimpleSummary.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py
index 5f76f16f..41875641 100644
--- a/lib/python/Screens/SimpleSummary.py
+++ b/lib/python/Screens/SimpleSummary.py
@@ -1,5 +1,5 @@
from Screens.Screen import Screen
-from Components.Sources.Source import ObsoleteSource
+#from Components.Sources.Source import ObsoleteSource
class SimpleSummary(Screen):
skin = """
@@ -23,7 +23,6 @@ class SimpleSummary(Screen):
# if parent has a "skin_summary" defined, use that as default
self.skin = parent.__dict__.get("skin_summary", self.skin)
- self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01")
self["Title"] = Label(parent.title or "")
def setTitle(self, title):