X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0b3d548fcc6f9033c428b7c8dee84ac12ad8dee6..cff3511b75d95143bcd315ade417a41aa1d8316e:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index f4502a76..411e2276 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,18 +1,18 @@ from Screens.Screen import Screen -from Components.Sources.Clock import Clock +from Components.Sources.Source import ObsoleteSource class SimpleSummary(Screen): skin = """ - + WithSeconds - + """ def __init__(self, session, root_screen): from Components.Label import Label 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):