From eccefaea9d4767e6d098648034452e98707d2e49 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristoffer=20Gr=C3=B6nlund?= Date: Sun, 3 Jan 2010 23:49:32 +0100 Subject: [PATCH] Fixed bug in get_albums() --- jamaendo/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 1.7.9.5