diff options
Diffstat (limited to 'RecordTimer.py')
| -rw-r--r-- | RecordTimer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RecordTimer.py b/RecordTimer.py index 4c3304c7..9f78ff24 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -328,8 +328,8 @@ class RecordTimer(timer.Timer): def isInTimer(self, eventid, begin, duration, service): time_match = 0 - for x in self.timer: - if x.service_ref == service: + for x in self.timer_list: + if str(x.service_ref) == str(service): if x.eit is not None and x.repeated == 0: if x.eit == eventid: return duration |
