[RELEASE] RadioTunes XBMC plugin - formerly Sky.fm (21th Sep 2014: v3.0.0)
#21
My fix should solve the problem. I'm sure that you have done something wrong.
Please look into the file at line 205:
Code:
            if (not "de Paris" in channel['name']) :
                if (not os.path.isfile(self._addonProfilePath + channelArt)) : # if channelart is not in cache
                    print "Channelart for " + channel['name'] + " not found in cache at " + self._addonProfilePath + channelArt
                    self.getChannelArt( channel['id'], "art_" + channel['key'] )
                    channel['isNew'] = True
                    self._newChannels = self._newChannels + 1
            streamList.append( channel )
The error occurs in line 207 within the print statement. In Python the idents are very important.
To be sure, you have edit the right code, just add a blank line before the print statement and test again.
Then check the error.log. Error line should now be line 208.

Reply


Messages In This Thread
RE: [RELEASE] Sky.fm XBMC plugin 2.0.0 - by atmelfreak - 2012-12-08, 20:30
Logout Mark Read Team Forum Stats Members Help
[RELEASE] RadioTunes XBMC plugin - formerly Sky.fm (21th Sep 2014: v3.0.0)1