* fixed Track.get_album() (issue #15)

This commit is contained in:
Amr Hassan 2009-03-13 15:12:08 +00:00
parent 396d89ee90
commit d7f83f49cf

View file

@ -1729,7 +1729,7 @@ class Track(_BaseObject, _Taggable):
return return
node = doc.getElementsByTagName("album")[0] 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): def get_wiki_published_date(self):
"""Returns the date of publishing this version of the wiki.""" """Returns the date of publishing this version of the wiki."""