aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-22 09:54:05 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-22 09:54:05 +0000
commit67b53c1cb06988394c35a6e965c99b72b67fe1be (patch)
tree1761f6b70a9a6aa349a003842162672a7787c85e /lib/python/Plugins/Extensions/SimpleRSS/plugin.py
parenta507c89e5f0424b634cb13178c39c56d19945563 (diff)
downloadenigma2-67b53c1cb06988394c35a6e965c99b72b67fe1be.tar.gz
enigma2-67b53c1cb06988394c35a6e965c99b72b67fe1be.zip
cleanup some imports
Diffstat (limited to 'lib/python/Plugins/Extensions/SimpleRSS/plugin.py')
-rw-r--r--lib/python/Plugins/Extensions/SimpleRSS/plugin.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
index 49da5e63..980fe5d5 100644
--- a/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
+++ b/lib/python/Plugins/Extensions/SimpleRSS/plugin.py
@@ -5,13 +5,10 @@ from Screens.Screen import Screen
from Screens.MessageBox import MessageBox
from Components.ActionMap import ActionMap
from Components.GUIComponent import GUIComponent
-from Components.Label import Label
from Components.MultiContent import MultiContentEntryText
from Plugins.Plugin import PluginDescriptor
-from enigma import eListboxPythonMultiContent, eListbox, gFont, iServiceInformation, RT_HALIGN_LEFT, RT_HALIGN_RIGHT, RT_WRAP
+from enigma import eListboxPythonMultiContent, eListbox, gFont, RT_HALIGN_LEFT, RT_WRAP
-from twisted.web import server
-from twisted.web.resource import Resource
from twisted.web.client import getPage
import xml.dom.minidom
@@ -25,7 +22,7 @@ my_global_session = None
urls = ["http://www.heise.de/newsticker/heise.rdf", "http://rss.slashdot.org/Slashdot/slashdot/to"]
from Components.config import config, ConfigSubsection, ConfigSelection, getConfigListEntry
-from Components.ConfigList import ConfigList, ConfigListScreen
+from Components.ConfigList import ConfigListScreen
config.simpleRSS = ConfigSubsection()
config.simpleRSS.hostname = ConfigSelection(choices = urls)
@@ -36,8 +33,6 @@ class SimpleRSS(ConfigListScreen, Screen):
</screen>"""
def __init__(self, session, args = None):
- from Tools.BoundFunction import boundFunction
-
print "screen init"
Screen.__init__(self, session)
self.skin = SimpleRSS.skin