X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/f9e68c68b63b86c6cdb940681e66231a856c21f9..1da41232bbb095c380dcc2cfb33b7114f05e8ced:/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py diff --git a/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py b/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py old mode 100755 new mode 100644 index 6667e3e3..157aa759 --- a/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py +++ b/lib/python/Plugins/SystemPlugins/CleanupWizard/plugin.py @@ -122,14 +122,14 @@ def selSetup(menuid, **kwargs): if menuid != "system": return [ ] - return [(_("Cleanup Wizard settings") + "...", openconfig, "cleanup_config", 71)] + return [(_("Cleanup Wizard settings"), openconfig, "cleanup_config", 71)] def Plugins(**kwargs): list = [] - list.append(PluginDescriptor(name=_("CleanupWizard"), description=_("Cleanup Wizard settings"),where=PluginDescriptor.WHERE_MENU, fnc=selSetup)) + list.append(PluginDescriptor(name=_("CleanupWizard"), description=_("Cleanup Wizard settings"),where=PluginDescriptor.WHERE_MENU, needsRestart = False, fnc=selSetup)) if config.plugins.cleanupwizard.enable.value: if not config.misc.firstrun.value: if internalMemoryExceeded: - list.append(PluginDescriptor(name=_("Cleanup Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(1, CleanupWizard))) + list.append(PluginDescriptor(name=_("Cleanup Wizard"), where = PluginDescriptor.WHERE_WIZARD, needsRestart = False, fnc=(1, CleanupWizard))) return list