Fix Album.get_tracks() error (wrong positional argument)

This commit is contained in:
Mice Pápai 2017-04-26 01:10:16 +02:00 committed by Hugo
parent bdd1b8d5e5
commit 96d921cdc2

View file

@ -1784,7 +1784,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.