mirror of
https://github.com/cooperhammond/irs.git
synced 2025-01-02 19:15:26 +00:00
Fix -s artist missing bug
This commit is contained in:
parent
1e81c8827e
commit
c5a5758ce3
|
@ -116,6 +116,10 @@ def main():
|
||||||
elif args.album:
|
elif args.album:
|
||||||
manager.rip_spotify_list("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:
|
elif args.song:
|
||||||
manager.rip_mp3()
|
manager.rip_mp3()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue