Fix Album.get_tracks() error (wrong positional argument)
This commit is contained in:
parent
76c9310341
commit
b664509bd4
|
@ -1958,7 +1958,7 @@ class Album(_Opus):
|
||||||
|
|
||||||
return _extract_tracks(
|
return _extract_tracks(
|
||||||
self._request(
|
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):
|
def get_url(self, domain_name=DOMAIN_ENGLISH):
|
||||||
"""Returns the URL of the album or track page on the network.
|
"""Returns the URL of the album or track page on the network.
|
||||||
|
|
Loading…
Reference in a new issue