X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e43adfc2866809c466093e0e4634b59ecfee0bb4..7cdca2a2cfb44ad34a3b36fb589f02b861c411c3:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index bb3e1e38..651d2e3d 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,16 +1,18 @@ from Screens.Screen import Screen +from Components.Sources.Source import ObsoleteSource class SimpleSummary(Screen): skin = """ - - + + WithSeconds + + """ def __init__(self, session, root_screen): from Components.Label import Label - from Components.Clock import Clock Screen.__init__(self, session) - self["Clock"] = Clock() + self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01") self["Title"] = Label(root_screen.title) def setTitle(self, title):