kwargs fix

This commit is contained in:
gordielachance 2016-09-20 09:11:16 +02:00
parent 81e6bd7ae0
commit 2580050353
1 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ class Plugin(object):
xbmcplugin.setContent(self.addon_handle, "albums")
for album in self.connection.walk_album_list('newest',size,None,None,None):
for album in self.connection.walk_album_list('newest',size):
self.add_album(album, show_artist=True)
xbmcplugin.endOfDirectory(self.addon_handle)
@ -236,7 +236,7 @@ class Plugin(object):
xbmcplugin.setContent(self.addon_handle, "albums")
for album in self.connection.walk_album_list('byGenre',size,None,None,genre):
for album in self.connection.walk_album_list('byGenre',size,genre=genre):
self.add_album(album, show_artist=True)
xbmcplugin.endOfDirectory(self.addon_handle)