X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/9d3112aad388b4369a339b851aa2507a02bb2d4f..7b0d371a7bbfb9e8d624eec9ed97e9a835f75ca7:/lib/python/Components/Sources/Clock.py diff --git a/lib/python/Components/Sources/Clock.py b/lib/python/Components/Sources/Clock.py index 4833ddde..8341ebec 100644 --- a/lib/python/Components/Sources/Clock.py +++ b/lib/python/Components/Sources/Clock.py @@ -1,7 +1,6 @@ -from Tools.Event import Event from Components.Element import cached from enigma import eTimer -import time +from time import time as getTime from Source import Source @@ -14,7 +13,7 @@ class Clock(Source): @cached def getClock(self): - return time.time() + return getTime() time = property(getClock)