X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FSources%2FClock.py;h=8341ebecc9f734e526d2f14148755495ea0b3156;hp=4c4b41e6c34706b9539b1b0ff56a82dffdad4a34;hb=a68abaddf31f9bad3affe6d7f81047dc89ec2a4e;hpb=f633dc405709001c4c90fb5259fe4bbe4609296f diff --git a/lib/python/Components/Sources/Clock.py b/lib/python/Components/Sources/Clock.py index 4c4b41e..8341ebe 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)