diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-08-02 11:14:42 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-08-02 11:14:42 +0000 |
| commit | a68abaddf31f9bad3affe6d7f81047dc89ec2a4e (patch) | |
| tree | 072093fc917654a0cc63792266e02dfc359b9eed /lib | |
| parent | f633dc405709001c4c90fb5259fe4bbe4609296f (diff) | |
| download | enigma2-a68abaddf31f9bad3affe6d7f81047dc89ec2a4e.tar.gz enigma2-a68abaddf31f9bad3affe6d7f81047dc89ec2a4e.zip | |
fix import
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/Sources/Clock.py | 4 |
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) |
