From abd9f2ef2fe5b6f66cb56a4a146dcb86d66c97e3 Mon Sep 17 00:00:00 2001 From: gutosie Date: Tue, 6 Jan 2026 13:52:30 +0200 Subject: [PATCH] Update plugin.py --- NeoBoot/plugin.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NeoBoot/plugin.py b/NeoBoot/plugin.py index ea74c55..f6c6da1 100644 --- a/NeoBoot/plugin.py +++ b/NeoBoot/plugin.py @@ -294,8 +294,12 @@ class NeoBootImageChoose(Screen): from Plugins.Extensions.NeoBoot.files.i_neo import SelectImage self.session.open(SelectImage) elif not fileExists('/usr/lib/enigma2/python/Plugins/PLi'): + try: from Plugins.Extensions.NeoBoot.files.i_neo import ImageManager self.session.open(ImageManager) + except: + mess = _('Downloading... Could not download image.') + self.session.open(MessageBox, mess, MessageBox.TYPE_INFO) else: mess = _('Plug installation lost.The plugin doesnt work on python 3 yet. Please try again later.') self.session.open(MessageBox, mess, MessageBox.TYPE_INFO)