Minorly stupid detail I overlooked with downloading albums

This commit is contained in:
Kepoor Hampond 2016-12-14 15:12:46 -08:00
parent f2966b3e34
commit b865aaa2a8
2 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -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',