From b664509bd4d7e502e618260bdda26be96f8d7b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mice=20P=C3=A1pai?= Date: Wed, 26 Apr 2017 01:10:16 +0200 Subject: [PATCH] Fix Album.get_tracks() error (wrong positional argument) --- pylast/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylast/__init__.py b/pylast/__init__.py index e533fde..90bbbd1 100644 --- a/pylast/__init__.py +++ b/pylast/__init__.py @@ -1958,7 +1958,7 @@ class Album(_Opus): return _extract_tracks( self._request( - self.ws_prefix + ".getInfo", cacheable=True), "tracks") + self.ws_prefix + ".getInfo", cacheable=True), self.network) def get_url(self, domain_name=DOMAIN_ENGLISH): """Returns the URL of the album or track page on the network.