X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/67b53c1cb06988394c35a6e965c99b72b67fe1be..3285eb3ebcd0ba134ac6b80337f8519d5a0da5b0:/lib/python/Components/Sources/Clock.py 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)