mirror of
https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
synced 2024-11-26 18:03:17 +01:00
Fixed minor error in download_artist_albums
This commit is contained in:
parent
1bd12be1dd
commit
07c1a6a3df
@ -611,7 +611,7 @@ def download_artist_albums(artist):
|
|||||||
""" Downloads albums of an artist """
|
""" Downloads albums of an artist """
|
||||||
token = SESSION.tokens().get("user-read-email")
|
token = SESSION.tokens().get("user-read-email")
|
||||||
albums = get_artist_albums(token, artist)
|
albums = get_artist_albums(token, artist)
|
||||||
for name, album_id in albums:
|
for album_id in albums:
|
||||||
download_album(album_id)
|
download_album(album_id)
|
||||||
|
|
||||||
def download_from_user_playlist():
|
def download_from_user_playlist():
|
||||||
|
Loading…
Reference in New Issue
Block a user