diff --git a/irs/ripper.py b/irs/ripper.py index f1508c1..6d89cbc 100644 --- a/irs/ripper.py +++ b/irs/ripper.py @@ -193,12 +193,12 @@ album".split(" ") return ("https://youtube.com" + self.code["href"], self.code["title"]) - def album(self, title): # Alias for `spotify_list("album", ...)` - return self.spotify_list("album", title) + def album(self, title, artist=None): # Alias for `spotify_list("album", ...)` + return self.spotify_list("album", title=title, artist=artist) def playlist(self, title, username): # Alias for `spotify_list("playlist", ...)` - return self.spotify_list("playlist", title, username) + return self.spotify_list("playlist", title=title, username=username) def spotify_list(self, type=None, title=None, username=None, artist=None): try: diff --git a/setup.py b/setup.py index ef104ef..ae89e70 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name = 'irs', - version = '6.3.6', + version = '6.4.6', description = 'A music downloader that just gets metadata.', url = 'https://github.com/kepoorhampond/irs', author = 'Kepoor Hampond',