Mispelling of parse_artist in ripper.py for -a + -A

This commit is contained in:
Kepoor Hampond 2017-04-21 19:15:56 -07:00
parent cca726a1bf
commit c6bd18edd2
3 changed files with 15 additions and 15 deletions

View file

@ -216,7 +216,7 @@ with init, or in method arguments.")
if ObjManip.blank_include(list_["name"], title): if ObjManip.blank_include(list_["name"], title):
if Config.parse_artist(self): if Config.parse_artist(self):
if ObjManip.blank_include(list_["artists"][0]["name"], if ObjManip.blank_include(list_["artists"][0]["name"],
ObjManip.arse_artist(self)): Config.parse_artist(self)):
the_list = self.spotify.album(list_["uri"]) the_list = self.spotify.album(list_["uri"])
break break
else: else:

View file

@ -1,14 +1,14 @@
from setuptools import setup from setuptools import setup
setup( setup(
name='irs', name = 'irs',
version='6.3.2', version = '6.3.3',
description='A music downloader that just gets metadata.', description = 'A music downloader that just gets metadata.',
url='https://github.com/kepoorhampond/irs', url = 'https://github.com/kepoorhampond/irs',
author='Kepoor Hampond', author = 'Kepoor Hampond',
author_email='kepoorh@gmail.com', author_email = 'kepoorh@gmail.com',
license='GPL', license = 'GPL',
packages =['irs'], packages = ['irs'],
install_requires=[ install_requires=[
'bs4', 'bs4',
'mutagen', 'mutagen',