aboutsummaryrefslogtreecommitdiff
path: root/timer.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-15 21:15:18 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-15 21:15:18 +0000
commit6fcea8c27cd8d20c01136774569c34842e9cbb4a (patch)
treeaa712aec0c79b040c2f163427ae5458195ba1ced /timer.py
parenta52476e8ffc33c408318eabbf24fdf87e404ddaf (diff)
downloadenigma2-6fcea8c27cd8d20c01136774569c34842e9cbb4a.tar.gz
enigma2-6fcea8c27cd8d20c01136774569c34842e9cbb4a.zip
typo: fix sense of w.repeated
Diffstat (limited to 'timer.py')
-rw-r--r--timer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/timer.py b/timer.py
index c8e78549..7123a84a 100644
--- a/timer.py
+++ b/timer.py
@@ -178,7 +178,7 @@ class Timer:
bisect.insort(self.timer_list, w)
else:
# yes. Process repeated, and re-add.
- if not w.repeated:
+ if w.repeated:
w.processRepeated()
w.state = TimerEntry.StateWaiting
self.addTimerEntry(w)