aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-23 09:17:04 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-23 09:17:04 +0000
commit26b914c452fab2f4d24113354cdc6d0c3776fddc (patch)
treeb1d1d2139b1628f3cef6d1ea64aa7d313440bf6a /lib/python
parentdb5a1cc35e95074df3e654fea8924a0ef6915c76 (diff)
downloadenigma2-26b914c452fab2f4d24113354cdc6d0c3776fddc.tar.gz
enigma2-26b914c452fab2f4d24113354cdc6d0c3776fddc.zip
fix bluescreen
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/TimerEntry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py
index 5be0f826..1c83bdb6 100644
--- a/lib/python/Screens/TimerEntry.py
+++ b/lib/python/Screens/TimerEntry.py
@@ -337,7 +337,7 @@ class TimerLog(Screen):
def fillLogList(self):
self.list = [ ]
for x in self.log_entries:
- self.list.append((str(time.strftime("%Y-%m-%d %H-%M", localtime(x[0])) + " - " + x[2]), x))
+ self.list.append((str(time.strftime("%Y-%m-%d %H-%M", time.localtime(x[0])) + " - " + x[2]), x))
def clearLog(self):
self.log_entries = []