From 65a7c0d34bf86543475e98a781a93aa59013b6ce Mon Sep 17 00:00:00 2001 From: acid-burn Date: Mon, 7 Feb 2011 20:47:31 +0100 Subject: Enigma2-Plugins: implement needsRestart=False for plugins that don't need a enigma2 restart after installation. refs #670 --- lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py (limited to 'lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py') diff --git a/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py b/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py old mode 100644 new mode 100755 index ec472e72..3a8c75c0 --- a/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SatelliteEquipmentControl/plugin.py @@ -71,6 +71,6 @@ def SecSetupStart(menuid): def Plugins(**kwargs): if (nimmgr.hasNimType("DVB-S")): - return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_MENU, fnc=SecSetupStart) + return PluginDescriptor(name=_("Satellite Equipment Setup"), description="Setup your satellite equipment", where = PluginDescriptor.WHERE_MENU, needsRestart = False, fnc=SecSetupStart) else: return [] -- cgit v1.2.3