From a68abaddf31f9bad3affe6d7f81047dc89ec2a4e Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Thu, 2 Aug 2007 11:14:42 +0000 Subject: [PATCH] fix import --- lib/python/Components/Sources/Clock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python/Components/Sources/Clock.py b/lib/python/Components/Sources/Clock.py index 4c4b41e6..8341ebec 100644 --- a/lib/python/Components/Sources/Clock.py +++ b/lib/python/Components/Sources/Clock.py @@ -1,6 +1,6 @@ from Components.Element import cached from enigma import eTimer -import time +from time import time as getTime from Source import Source @@ -13,7 +13,7 @@ class Clock(Source): @cached def getClock(self): - return time.time() + return getTime() time = property(getClock) -- 2.30.2