Kodi Community Forum

Full Version: USTVNow Doesn't Load
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm a new user running Isengard, Windows 10. I added USTVNow and I get an error when it launches. I checked the log:

16:28:58 T:7760 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.ImportError'>
Error Contents: No module named pyxbmctmanager.window
Traceback (most recent call last):
File "C:\Users\Dad\AppData\Roaming\Kodi\addons\plugin.video.ustvnow.tva\setup.py", line 130, in <module>
Setup()
File "C:\Users\Dad\AppData\Roaming\Kodi\addons\plugin.video.ustvnow.tva\setup.py", line 18, in Setup
from pyxbmctmanager.window import Window
ImportError: No module named pyxbmctmanager.window
-->End of Python script error report<--

It looks like there was an error in setup.py, line 18 (last line below):

import os
import sys
import xbmc
import xbmcaddon
import xbmcgui

addon = xbmcaddon.Addon()
addonname = addon.getAddonInfo('name')
addonid = addon.getAddonInfo('id')
root = addon.getAddonInfo('path')

settings = os.path.join(xbmc.translatePath( root ), 'resources/settings.xml')
def Setup():
sys.path.append(os.path.join(xbmc.translatePath( "special://home/addons/script.module.beautifulsoup/" ), 'lib'))
sys.path.append(os.path.join(xbmc.translatePath( "special://home/addons/script.module.pyxbmct/" ), 'lib'))
sys.path.append(os.path.join(xbmc.translatePath( "special://home/addons/script.module.pyxbmctmanager/" ), 'lib'))
from resources.lib import ustvnow
from pyxbmctmanager.window import Window

So I'm missing the pyxbmctmanager module/sub-module?

Help please!