aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/TimeDateInput.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-10-09 21:15:38 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-10-09 21:15:38 +0000
commit263fb05a22a1caa119810445d0b5d3faa8236579 (patch)
treebe8c2015db0c22a478797ca42c4713b6f458de15 /lib/python/Screens/TimeDateInput.py
parent81ba8338641aa41e52e498b43aeefa66714819fe (diff)
downloadenigma2-263fb05a22a1caa119810445d0b5d3faa8236579.tar.gz
enigma2-263fb05a22a1caa119810445d0b5d3faa8236579.zip
use new ConfigClock
Diffstat (limited to 'lib/python/Screens/TimeDateInput.py')
-rw-r--r--lib/python/Screens/TimeDateInput.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/TimeDateInput.py b/lib/python/Screens/TimeDateInput.py
index d8e1f8a1..bc1726e0 100644
--- a/lib/python/Screens/TimeDateInput.py
+++ b/lib/python/Screens/TimeDateInput.py
@@ -33,7 +33,8 @@ class TimeDateInput(Screen, ConfigListScreen):
def createConfig(self):
nowtime = time.time()
self.timeinput_date = ConfigDateTime(default = nowtime, formatstring = (_("%d.%B %Y"), 86400))
-# self.timeinput_time = ConfigSequence(default = [int(time.strftime("%H", time.localtime(nowtime))), int(time.strftime("%M", time.localtime(nowtime)))]
+ self.timeinput_time = ConfigClock(default = nowtime)
+
assert False, "fixme"
def createSetup(self, configlist):