aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/SimpleRSS
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-02-14 20:40:05 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-02-14 20:40:05 +0000
commit8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f (patch)
treec382ddc39fdc759befd9e281bcc011e1dd579e9d /lib/python/Plugins/Extensions/SimpleRSS
parent6f73e6abddf4170357c490966d0e1c622eb376f5 (diff)
downloadenigma2-8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f.tar.gz
enigma2-8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f.zip
unlink some cyclic dependencys to get garbage collection working
Diffstat (limited to 'lib/python/Plugins/Extensions/SimpleRSS')
-rw-r--r--lib/python/Plugins/Extensions/SimpleRSS/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
index 3c96dd44..608d4720 100644
--- a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
+++ b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
@@ -231,7 +231,7 @@ class RSSPoller:
self.d = getPage(config.simpleRSS.hostname.value).addCallback(self._gotPage).addErrback(self.error)
def shutdown(self):
- self.poll_timer.timeout.get().remove(self.poll)
+ self.poll_timer.callback.remove(self.poll)
self.poll_timer = None
def main(session, **kwargs):