aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-07-28 09:18:29 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-07-28 09:18:29 +0000
commitf09c607ad3904b0adfe65a3f4519d79861711d4b (patch)
tree2bd78d8f2d8295eaa52545afb2cc472b765a916a /lib/python/Plugins/Extensions/SimpleRSS/plugin.py
parent51a80d8a7f6a339a214db9e012feadb66322d380 (diff)
downloadenigma2-f09c607ad3904b0adfe65a3f4519d79861711d4b.tar.gz
enigma2-f09c607ad3904b0adfe65a3f4519d79861711d4b.zip
fix *required* kwargs. plugins not having **kwargs will probably not run with newer enigma2, but this has been documented since the beginning.
Diffstat (limited to 'lib/python/Plugins/Extensions/SimpleRSS/plugin.py')
-rw-r--r--lib/python/Plugins/Extensions/SimpleRSS/plugin.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
index 980fe5d5..b5218358 100644
--- a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
+++ b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
@@ -19,7 +19,8 @@ from sets import Set
my_global_session = None
-urls = ["http://www.heise.de/newsticker/heise.rdf", "http://rss.slashdot.org/Slashdot/slashdot/to"]
+#urls = ["http://www.heise.de/newsticker/heise.rdf", "http://rss.slashdot.org/Slashdot/slashdot/to"]
+urls = ["http://mastermaq.podcastspot.com/episodes/rss/mpg1"]
from Components.config import config, ConfigSubsection, ConfigSelection, getConfigListEntry
from Components.ConfigList import ConfigListScreen
@@ -233,7 +234,7 @@ class RSSPoller:
self.poll_timer.timeout.get().remove(self.poll)
self.poll_timer = None
-def main(session):
+def main(session, **kwargs):
print "session.open"
session.open(SimpleRSS)
print "done"