diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-23 09:17:04 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-23 09:17:04 +0000 |
| commit | 26b914c452fab2f4d24113354cdc6d0c3776fddc (patch) | |
| tree | b1d1d2139b1628f3cef6d1ea64aa7d313440bf6a /lib/python | |
| parent | db5a1cc35e95074df3e654fea8924a0ef6915c76 (diff) | |
| download | enigma2-26b914c452fab2f4d24113354cdc6d0c3776fddc.tar.gz enigma2-26b914c452fab2f4d24113354cdc6d0c3776fddc.zip | |
fix bluescreen
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/TimerEntry.py | 2 |
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 = [] |
