Use nargs for -d parameter
This commit is contained in:
parent
82dc7471ac
commit
eed421041f
2 changed files with 2 additions and 1 deletions
|
@ -71,6 +71,7 @@ def main():
|
|||
"-d",
|
||||
"--download",
|
||||
type=str,
|
||||
nargs="*",
|
||||
help="Downloads tracks, playlists and albums from the URLs written in the file passed.",
|
||||
)
|
||||
group.add_argument(
|
||||
|
|
|
@ -211,7 +211,7 @@ class App:
|
|||
return selection.get("episodes")
|
||||
elif args.download:
|
||||
ids = []
|
||||
for x in args.download.split(", "):
|
||||
for x in args.download:
|
||||
ids.extend(selection.from_file(x.strip()))
|
||||
return ids
|
||||
elif args.urls:
|
||||
|
|
Loading…
Add table
Reference in a new issue