From d7f83f49cfe30b19a17257be9c0daae9774ef33e Mon Sep 17 00:00:00 2001 From: Amr Hassan Date: Fri, 13 Mar 2009 15:12:08 +0000 Subject: [PATCH] * fixed Track.get_album() (issue #15) --- pylast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylast.py b/pylast.py index 508767e..62cf836 100644 --- a/pylast.py +++ b/pylast.py @@ -1729,7 +1729,7 @@ class Track(_BaseObject, _Taggable): return node = doc.getElementsByTagName("album")[0] - return Album(_extract(node, "artist"), _extract(node, "title")) + return Album(_extract(node, "artist"), _extract(node, "title"), *self.auth_data) def get_wiki_published_date(self): """Returns the date of publishing this version of the wiki."""