aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Clock.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-28 23:13:58 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-28 23:13:58 +0000
commit301bab11f8453a6899153b7be338a352803b22cb (patch)
tree5df637e4d8812cb83f5073f5160625aee65c3937 /lib/python/Components/Clock.py
parent1f5b1a20e4de369c197de1dae8fcb368e3e10b26 (diff)
downloadenigma2-301bab11f8453a6899153b7be338a352803b22cb.tar.gz
enigma2-301bab11f8453a6899153b7be338a352803b22cb.zip
added setup screens
Diffstat (limited to 'lib/python/Components/Clock.py')
-rw-r--r--lib/python/Components/Clock.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/Clock.py b/lib/python/Components/Clock.py
index 3beed551..eba5ea27 100644
--- a/lib/python/Components/Clock.py
+++ b/lib/python/Components/Clock.py
@@ -21,7 +21,8 @@ class Clock(HTMLComponent, GUIComponent, VariableText):
# "funktionalitaet"
def doClock(self):
t = time.localtime()
- self.setText("%2d:%02d:%02d" % (t[3], t[4], t[5]))
+ #HACK use timezone settings
+ self.setText("%2d:%02d:%02d" % (t[3] + 2, t[4], t[5]))
# realisierung als GUI
def createWidget(self, parent):