aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Plugin.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-02-12 21:25:08 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-02-12 21:25:08 +0100
commit76e5181cade262b86610dcc851bcb4452196ccdc (patch)
tree25831b32e1543b893a033729e472dd679dffdc64 /lib/python/Plugins/Plugin.py
parent00248c1a8794e64b8ce82d9cdefdd3ddae98dffd (diff)
downloadenigma2-76e5181cade262b86610dcc851bcb4452196ccdc.tar.gz
enigma2-76e5181cade262b86610dcc851bcb4452196ccdc.zip
small speedups/cleanups by moritz venn
Diffstat (limited to 'lib/python/Plugins/Plugin.py')
-rw-r--r--lib/python/Plugins/Plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Plugins/Plugin.py b/lib/python/Plugins/Plugin.py
index 6df4fce7..53e7b0b8 100644
--- a/lib/python/Plugins/Plugin.py
+++ b/lib/python/Plugins/Plugin.py
@@ -52,13 +52,13 @@ class PluginDescriptor:
def __init__(self, name = "Plugin", where = [ ], description = "", icon = None, fnc = None, wakeupfnc = None, internal = False):
self.name = name
self.internal = internal
- if type(where) is list:
+ if isinstance(where, list):
self.where = where
else:
self.where = [ where ]
self.description = description
- if type(icon) is str or icon is None:
+ if icon is None or isinstance(icon, str):
self.iconstr = icon
self.icon = None
else:
@@ -69,8 +69,8 @@ class PluginDescriptor:
self.__call__ = fnc
def updateIcon(self, path):
- if type(self.iconstr) is str:
- self.icon = LoadPixmap(path + "/" + self.iconstr)
+ if isinstance(self.iconstr, str):
+ self.icon = LoadPixmap('/'.join((path, self.iconstr)))
else:
self.icon = None