From 8be4b85d94c488f97c3a9b2c7760e7b397dad5d8 Mon Sep 17 00:00:00 2001 From: gutosie Date: Fri, 21 Jan 2022 10:37:58 +0200 Subject: [PATCH] Update plugin.py --- NeoBoot/plugin.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/NeoBoot/plugin.py b/NeoBoot/plugin.py index 89a618c..cf38711 100644 --- a/NeoBoot/plugin.py +++ b/NeoBoot/plugin.py @@ -1543,10 +1543,11 @@ class NeoBootImageChoose(Screen): from Plugins.Extensions.NeoBoot.unpack import InstallImage self.session.open(InstallImage) except Exception as e: + showlog = 'cat ' + getNeoLocation() + 'ImageBoot/neoboot.log' loggscrash = time.localtime(time.time()) LogCrashGS('%02d:%02d:%d %02d:%02d:%02d - %s\r\n' % (loggscrash.tm_mday, loggscrash.tm_mon, loggscrash.tm_year, loggscrash.tm_hour, loggscrash.tm_min, loggscrash.tm_sec, str(e))) - mess = _('Sorry, cannot open instalation menu.\nAccess error with error code 0x72.') - self.session.open(MessageBox, mess, MessageBox.TYPE_INFO) + #mess = _('Sorry, cannot open instalation menu.\nAccess error with error code 0x72.') + self.session.openWithCallback(self.close, Console, _('NeoBoot ERROR !!!'), [showlog]) def DownloaderImage(self): if not os.path.exists('/usr/lib/enigma2/python/Plugins/Extensions/ImageDownloader/download.py'):