diff --git a/irs/manage.py b/irs/manage.py index f2175dc..889174e 100644 --- a/irs/manage.py +++ b/irs/manage.py @@ -88,7 +88,7 @@ def rip_album(album, artist, print (color("\n%s/%s - " % (i + 1, len(songs)), ["UNDERLINE"]), end="") rip_mp3(j, artist, part_of_album=True, album=album, tracknum=i + 1, album_art_url=album_art_url) - if errors.size > 0: + if len(errors) > 0: for error in errors: print (error) except Exception as e: diff --git a/setup.py b/setup.py index fdd6e8e..604e9f6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='irs', - version='1.2.7', + version='1.2.8', description='A music downloader that just gets metadata.', url='https://github.com/kepoorhampond/irs', author='Kepoor Hampond',