Skip to content

Commit

Permalink
[plugin.audio.lastfmtube] addon-check compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
Rechi committed Jan 25, 2019
1 parent 7c0dee6 commit 795a000
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions plugin.audio.lastfmtube/addon.xml
Expand Up @@ -13,9 +13,8 @@
<description lang="en_GB">The world's largest online music catalogue, powered by your scrobbles and paired with YouTube.</description>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<source>https://github.com/Lunatixz/XBMC_Addons/tree/master/plugin.audio.lastfmtube</source>
<source>https://github.com/Lunatixz/KODI_Addons/tree/master/plugin.audio.lastfmtube</source>
<forum>https://forum.kodi.tv/showthread.php?tid=315688</forum>
<news></news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
Expand Down
4 changes: 2 additions & 2 deletions plugin.audio.lastfmtube/default.py
Expand Up @@ -133,7 +133,7 @@ def mainMenu(self):

def browseMenu(self, user, pwd):
for item in MENULST:
print item
print(item)
self.addDir(*item,**{'user':user,'pwd':pwd})


Expand All @@ -151,7 +151,7 @@ def loadJson(self, string):
return {}
try:
return json.loads(uni(string))
except Exception,e:
except Exception as e:
return {}


Expand Down

0 comments on commit 795a000

Please sign in to comment.