You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2024-06-05 09:03:19.624 T:1543846 error : EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the f
ollowing error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <class 'ModuleNotFoundError'>
Error Contents: No module named 'imp'
Traceback (most recent call last):
File "/home/../.kodi/addons/script.grab.fanart/launcher.py", line 1, in <module
from resources.lib.service import GrabFanartService
File "/home/../.kodi/addons/script.grab.fanart/resources/lib/service.py", line
5, in
from future.moves._thread import start_new_thread
File "/home/../.kodi/addons/script.module.future/lib/future/moves/init.py", line 5, in
from future.standard_library import import_top_level_modules
File "/home/../.kodi/addons/script.module.future/lib/future/standard_library/init.py", line 65, in
import imp
ModuleNotFoundError: No module named 'imp'
-->End of Python script error report<--
The text was updated successfully, but these errors were encountered:
I think this is essentially the same error as flagged in a different addon here: robweber/xbmcbackup#239
My understanding of this issue is that an upstream fix for the future library is needed to fix this. There is a PR open already just waiting for it to be merged in. When it's available it should update in Kodi automatically and fix this for any downstream addons using it.
Since Python 3.12 the module "imp" is deprecated.
Now I'm getting this error:
2024-06-05 09:03:19.624 T:1543846 error : EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the f
ollowing error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <class 'ModuleNotFoundError'>
Error Contents: No module named 'imp'
Traceback (most recent call last):
File "/home/../.kodi/addons/script.grab.fanart/launcher.py", line 1, in <module
5, in
from future.moves._thread import start_new_thread
File "/home/../.kodi/addons/script.module.future/lib/future/moves/init.py", line 5, in
from future.standard_library import import_top_level_modules
File "/home/../.kodi/addons/script.module.future/lib/future/standard_library/init.py", line 65, in
import imp
ModuleNotFoundError: No module named 'imp'
-->End of Python script error report<--
The text was updated successfully, but these errors were encountered: