diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-17 04:57:49 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-17 04:57:49 +0000 |
| commit | 0f3627c7217271af00b5872bacfea1a18d7867a4 (patch) | |
| tree | b8dae94de1ebf28d76c51f1c566620a4a1849a99 /lib/python/Components/TimerList.py | |
| parent | cd1a9f92f96bd60924795c88429acb7aba12e184 (diff) | |
| download | enigma2-0f3627c7217271af00b5872bacfea1a18d7867a4.tar.gz enigma2-0f3627c7217271af00b5872bacfea1a18d7867a4.zip | |
fixed repeated timers
Diffstat (limited to 'lib/python/Components/TimerList.py')
| -rw-r--r-- | lib/python/Components/TimerList.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py index 81501ca8..6511f6f1 100644 --- a/lib/python/Components/TimerList.py +++ b/lib/python/Components/TimerList.py @@ -2,6 +2,7 @@ from HTMLComponent import * from GUIComponent import * from Tools.FuzzyDate import FuzzyTime +import time from enigma import eListboxPythonMultiContent, eListbox, gFont from timer import TimerEntry @@ -25,7 +26,6 @@ RT_WRAP = 32 def TimerEntryComponent(timer, processed): res = [ timer ] - res.append((0, 0, 400, 30, 0, RT_HALIGN_LEFT, timer.service_ref.getServiceName())) repeatedtext = "" days = [ "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" ] @@ -39,8 +39,6 @@ def TimerEntryComponent(timer, processed): repeatedtext += days[x] count += 1 flags = flags >> 1 - print [FuzzyTime(timer.begin)[1], FuzzyTime(timer.end)[1]] - print (FuzzyTime(timer.begin) + FuzzyTime(timer.end)[1:]) res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, repeatedtext + (" %s ... %s" % (FuzzyTime(timer.begin)[1], FuzzyTime(timer.end)[1])))) else: res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, repeatedtext + ("%s, %s ... %s" % (FuzzyTime(timer.begin) + FuzzyTime(timer.end)[1:])))) |
