From 6103da2800643df3f47eaf53da36dbbcfca14737 Mon Sep 17 00:00:00 2001 From: gutosie Date: Thu, 11 Mar 2021 20:47:23 +0200 Subject: [PATCH] Update plugin.py --- NeoBoot/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NeoBoot/plugin.py b/NeoBoot/plugin.py index 85c27f3..bc4de71 100644 --- a/NeoBoot/plugin.py +++ b/NeoBoot/plugin.py @@ -37,7 +37,7 @@ from Components.ProgressBar import ProgressBar from Components.ScrollLabel import ScrollLabel from Components.Pixmap import Pixmap, MultiPixmap from Components.config import * -from Components.PluginComponent import plugins +#from Components.PluginComponent import plugins from Components.ConfigList import ConfigListScreen from Tools.LoadPixmap import LoadPixmap from Tools.Directories import fileExists, pathExists, createDir, resolveFilename, SCOPE_PLUGINS @@ -657,10 +657,10 @@ class NeoBootInstallation(Screen): def RebootSTB(self, answer): if answer is True: - plugins.reloadPlugins() + #plugins.reloadPlugins() os.system('sync && echo 3 > /proc/sys/vm/drop_caches; reboot -d -f') else: - plugins.reloadPlugins() + #plugins.reloadPlugins() self.close()