diff --git a/Gorillaz - Tomorrow comes today lyrics-jzunQnhI3jQ.m4a.part b/Gorillaz - Tomorrow comes today lyrics-jzunQnhI3jQ.m4a.part new file mode 100644 index 0000000..3e9133d Binary files /dev/null and b/Gorillaz - Tomorrow comes today lyrics-jzunQnhI3jQ.m4a.part differ diff --git a/irs/ripper.py b/irs/ripper.py index 48a51f3..6cd3b01 100644 --- a/irs/ripper.py +++ b/irs/ripper.py @@ -216,7 +216,7 @@ with init, or in method arguments.") if ObjManip.blank_include(list_["name"], title): if Config.parse_artist(self): if ObjManip.blank_include(list_["artists"][0]["name"], - ObjManip.arse_artist(self)): + Config.parse_artist(self)): the_list = self.spotify.album(list_["uri"]) break else: diff --git a/setup.py b/setup.py index 49e7230..879dd7d 100644 --- a/setup.py +++ b/setup.py @@ -1,22 +1,22 @@ from setuptools import setup setup( - name='irs', - version='6.3.2', - description='A music downloader that just gets metadata.', - url='https://github.com/kepoorhampond/irs', - author='Kepoor Hampond', - author_email='kepoorh@gmail.com', - license='GPL', - packages =['irs'], + name = 'irs', + version = '6.3.3', + description = 'A music downloader that just gets metadata.', + url = 'https://github.com/kepoorhampond/irs', + author = 'Kepoor Hampond', + author_email = 'kepoorh@gmail.com', + license = 'GPL', + packages = ['irs'], install_requires=[ - 'bs4', - 'mutagen', - 'youtube-dl', - 'requests', - 'spotipy', + 'bs4', + 'mutagen', + 'youtube-dl', + 'requests', + 'spotipy', ], entry_points = { - 'console_scripts': ['irs = irs.cli:main'], + 'console_scripts': ['irs = irs.cli:main'], }, )