Support turbo2.
[vuplus_dvbapp] / lib / python / Components / PluginComponent.py
index a713c3b..b06246b 100755 (executable)
@@ -49,7 +49,6 @@ class PluginComponent:
                        directory_category = directory + c
                        if not os_path.isdir(directory_category):
                                continue
-                       open(directory_category + "/__init__.py", "a").close()
                        for pluginname in os_listdir(directory_category):
                                path = directory_category + "/" + pluginname
                                if os_path.isdir(path):
@@ -129,7 +128,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):