From dd827b58dc6060f9798814cb77c4a8cd17d305b4 Mon Sep 17 00:00:00 2001 From: Moritz Venn Date: Thu, 8 Jan 2009 20:48:18 +0000 Subject: [PATCH] don't use second layer of helper function when communicating with autotimer --- epgrefresh/src/EPGRefresh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epgrefresh/src/EPGRefresh.py b/epgrefresh/src/EPGRefresh.py index c1a05a1..a2ed83e 100644 --- a/epgrefresh/src/EPGRefresh.py +++ b/epgrefresh/src/EPGRefresh.py @@ -166,8 +166,8 @@ class EPGRefresh: else: # Fetch services for timer in autotimer.getEnabledTimerList(): - additionalServices.extend([EPGRefreshService(x, None) for x in timer.getServices()]) - additionalBouquets.extend([EPGRefreshService(x, None) for x in timer.getBouquets()]) + additionalServices.extend([EPGRefreshService(x, None) for x in timer.services]) + additionalBouquets.extend([EPGRefreshService(x, None) for x in timer.bouquets]) finally: # Remove instance if there wasn't one before if removeInstance: -- 2.7.4