Hello!
The official FranceTV add-on hs a typical bug these days:
Python
Error Type: <class 'AttributeError'>
Error Contents: module 'xbmc' has no attribute 'translatePath'
Traceback (most recent call last):
File "/storage/.kodi/addons/plugin.video.francetv/addon_entry.py", line 21, in <module>
from resources.lib.addon import FranceTVAddon
File "/storage/.kodi/addons/plugin.video.francetv/resources/lib/addon.py", line 61, in <module>
class FranceTVAddon:
File "/storage/.kodi/addons/plugin.video.francetv/resources/lib/addon.py", line 64, in FranceTVAddon
_ADDON_DIR = xbmc.translatePath(_ADDON.getAddonInfo("path"))
AttributeError: module 'xbmc' has no attribute 'translatePath'
Simple (simplistic?) fix: in
add, where the existing imports are:
and, line 65, change
to
I'm a rusty coder, so that change may not be the best. It's what works for me after Googling for the error I was getting.