From: Kristoffer Grönlund Date: Sun, 3 Jan 2010 22:49:32 +0000 (+0100) Subject: Fixed bug in get_albums() X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;ds=sidebyside;h=eccefaea9d4767e6d098648034452e98707d2e49;p=jamaendo Fixed bug in get_albums() --- diff --git a/jamaendo/api.py b/jamaendo/api.py index 3de54e9..07a04e1 100644 --- a/jamaendo/api.py +++ b/jamaendo/api.py @@ -670,7 +670,7 @@ def get_albums(artist_id): a = q.execute() if not a: raise JamendoAPIException(str(q)) - _update_cache(_artists, a) + _update_cache(_albums, a) return a def get_album(album_id):