aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-02 12:03:44 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-02 12:03:44 +0000
commitc5fd2f27b90414ea8d6f6227c2ad34dda70c40e7 (patch)
treea59561bb809bb1142d5db6cc521953bd8da29938 /lib/python
parent1213cbcff4f8b31aa77825325f102a134d246e0a (diff)
downloadenigma2-c5fd2f27b90414ea8d6f6227c2ad34dda70c40e7.tar.gz
enigma2-c5fd2f27b90414ea8d6f6227c2ad34dda70c40e7.zip
dont use queryEPG callback (no more memleak? or smaller mem leak?)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/EpgList.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py
index b7288792..e9a87e2f 100644
--- a/lib/python/Components/EpgList.py
+++ b/lib/python/Components/EpgList.py
@@ -187,11 +187,11 @@ class EPGList(HTMLComponent, GUIComponent):
else:
new_stime = begTime-120
test.append((service, 0, new_stime))
- self.list = self.queryEPG(test, self.buildMultiEntry)
-# tmp = self.queryEPG(test)
-# self.list = [ ]
-# for x in tmp:
-# self.list.append(self.buildMultiEntry(x[0], x[1], x[2], x[3], x[4], x[5], x[6]))
+# self.list = self.queryEPG(test, self.buildMultiEntry)
+ tmp = self.queryEPG(test)
+ self.list = [ ]
+ for x in tmp:
+ self.list.append(self.buildMultiEntry(x[0], x[1], x[2], x[3], x[4], x[5], x[6]))
self.l.setList(self.list)
print time() - t