aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/SocketMMI/plugin.py
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2011-02-07 21:52:19 +0100
committeracid-burn <acid-burn@opendreambox.org>2011-02-07 21:52:19 +0100
commit81ed3b8706eb034f04e9db87fbcfd9dbba39e125 (patch)
treef6575114c438399991248b0681c2c83b5981029b /lib/python/Plugins/Extensions/SocketMMI/plugin.py
parent65a7c0d34bf86543475e98a781a93aa59013b6ce (diff)
downloadenigma2-81ed3b8706eb034f04e9db87fbcfd9dbba39e125.tar.gz
enigma2-81ed3b8706eb034f04e9db87fbcfd9dbba39e125.zip
Enigma2-Plugins: implement needsRestart=True for plugins that need a enigma2 restart after installation.
refs #670
Diffstat (limited to 'lib/python/Plugins/Extensions/SocketMMI/plugin.py')
-rwxr-xr-x[-rw-r--r--]lib/python/Plugins/Extensions/SocketMMI/plugin.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/python/Plugins/Extensions/SocketMMI/plugin.py b/lib/python/Plugins/Extensions/SocketMMI/plugin.py
index 387c8306..568cde2a 100644..100755
--- a/lib/python/Plugins/Extensions/SocketMMI/plugin.py
+++ b/lib/python/Plugins/Extensions/SocketMMI/plugin.py
@@ -22,6 +22,7 @@ def autostart(reason, **kwargs):
socketHandler = SocketMMIMessageHandler()
def Plugins(**kwargs):
- return [ PluginDescriptor(name = "SocketMMI", description = _("Python frontend for /tmp/mmi.socket"), where = PluginDescriptor.WHERE_MENU, fnc = menu),
- PluginDescriptor(where = PluginDescriptor.WHERE_SESSIONSTART, fnc = sessionstart),
- PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, fnc = autostart) ]
+ return [ PluginDescriptor(name = "SocketMMI", description = _("Python frontend for /tmp/mmi.socket"), where = PluginDescriptor.WHERE_MENU, needsRestart = True, fnc = menu),
+ PluginDescriptor(where = PluginDescriptor.WHERE_SESSIONSTART, needsRestart = True, fnc = sessionstart),
+ PluginDescriptor(where = PluginDescriptor.WHERE_AUTOSTART, needsRestart = True, fnc = autostart) ]
+