aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-12-20 23:21:59 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-12-20 23:27:02 +0100
commitc932d71385c376af2fe2cc8ba26ef4f44188d1d6 (patch)
treeaa305aec1e28b3859dc934e99f80690b25aaeb14 /lib/python/Components
parent41a34ba7cc10000dbc950203aed2285879b5b11d (diff)
downloadenigma2-c932d71385c376af2fe2cc8ba26ef4f44188d1d6.tar.gz
enigma2-c932d71385c376af2fe2cc8ba26ef4f44188d1d6.zip
TimerSanityCheck.py: ignore ended singleshot timers in timersanity check (speedup)
fixes #635
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/TimerSanityCheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/TimerSanityCheck.py b/lib/python/Components/TimerSanityCheck.py
index b472a19e..dc1b519f 100644
--- a/lib/python/Components/TimerSanityCheck.py
+++ b/lib/python/Components/TimerSanityCheck.py
@@ -107,7 +107,7 @@ class TimerSanityCheck:
self.rep_eventlist.append((begin, idx))
begin += 86400
rflags >>= 1
- else:
+ elif timer.state < TimerEntry.StateEnded:
self.nrep_eventlist.extend([(timer.begin,self.bflag,idx),(timer.end,self.eflag,idx)])
idx += 1