X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/86126d70cfac1f47db0b0b20b1f8412c68b16d49..6eeefece35e4269e02fdb7abab4f79d8e7b8f98b:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index d10c32da..1a5fe887 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,14 +1,16 @@ from Screens.Screen import Screen +from Components.Sources.Clock import Clock 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["Title"] = Label(root_screen.title)