aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/PluginComponent.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2011-03-04 10:04:03 +0100
committerghost <andreas.monzner@multimedia-labs.de>2011-03-09 14:38:28 +0100
commitf4f8263d2594c3bf1d46a9820f1bd4232e312739 (patch)
tree7bd30c7e50a5af8e86ba2cbf2d68baa5dfa8b223 /lib/python/Components/PluginComponent.py
parentdb34d7e342d82f9767045de76b791fee2357bbc4 (diff)
downloadenigma2-f4f8263d2594c3bf1d46a9820f1bd4232e312739.tar.gz
enigma2-f4f8263d2594c3bf1d46a9820f1bd4232e312739.zip
PluginComponent.py: remove unneeded sort (fixes crash on Menu button press)
Diffstat (limited to 'lib/python/Components/PluginComponent.py')
-rwxr-xr-xlib/python/Components/PluginComponent.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/python/Components/PluginComponent.py b/lib/python/Components/PluginComponent.py
index a713c3b4..c6ad584f 100755
--- a/lib/python/Components/PluginComponent.py
+++ b/lib/python/Components/PluginComponent.py
@@ -129,7 +129,6 @@ class PluginComponent:
res = [ ]
for p in self.getPlugins(PluginDescriptor.WHERE_MENU):
res += p(menuid)
- res.sort(key=lambda x:x.weight)
return res
def clearPluginList(self):