Merge pull request #7 from mrandri19/master

Fix -s artist missing bug
This commit is contained in:
Kepoor Hampond 2017-01-28 07:56:05 -08:00 committed by GitHub
commit 99658fde08

View file

@ -116,6 +116,10 @@ def main():
elif args.album:
manager.rip_spotify_list("album")
elif args.song and not args.artist:
parser.error("error: must supply -a/--artist if specifying -s/--song")
exit(1)
elif args.song:
manager.rip_mp3()