12-07-2015, 07:35 AM
I was having similar issues what fixed it for me was putting a try and except block around the nzbToMedia symlinking part in .kodi/addons/script.service.audo/resources/audo.py
Not sure why that code fails, it's complaining about the file already exists.
Not sure why that code fails, it's complaining about the file already exists.
Code:
try:
if os.path.islink(xbmc.translatePath(sabnzbdScripts + 'nzbToMedia')):
os.unlink(sabnzbdScripts + 'nzbToMedia')
for file in os.listdir(nzbToMediaScripts):
if not os.path.islink(sabnzbdScripts + str(file)):
os.symlink(nzbToMediaScripts + str(file), sabnzbdScripts + str(file))
except Exception, e:
xbmc.log('AUDO:Error while symlinking nzbToMedia scripts', level=xbmc.LOGNOTICE)
xbmc.log(str(e), level=xbmc.LOGNOTICE)