aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-08-02 11:14:42 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-08-02 11:14:42 +0000
commita68abaddf31f9bad3affe6d7f81047dc89ec2a4e (patch)
tree072093fc917654a0cc63792266e02dfc359b9eed /lib
parentf633dc405709001c4c90fb5259fe4bbe4609296f (diff)
downloadenigma2-a68abaddf31f9bad3affe6d7f81047dc89ec2a4e.tar.gz
enigma2-a68abaddf31f9bad3affe6d7f81047dc89ec2a4e.zip
fix import
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/Sources/Clock.py4
1 files 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)