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",
|
"-d",
|
||||||
"--download",
|
"--download",
|
||||||
type=str,
|
type=str,
|
||||||
|
nargs="*",
|
||||||
help="Downloads tracks, playlists and albums from the URLs written in the file passed.",
|
help="Downloads tracks, playlists and albums from the URLs written in the file passed.",
|
||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
|
|
|
@ -211,7 +211,7 @@ class App:
|
||||||
return selection.get("episodes")
|
return selection.get("episodes")
|
||||||
elif args.download:
|
elif args.download:
|
||||||
ids = []
|
ids = []
|
||||||
for x in args.download.split(", "):
|
for x in args.download:
|
||||||
ids.extend(selection.from_file(x.strip()))
|
ids.extend(selection.from_file(x.strip()))
|
||||||
return ids
|
return ids
|
||||||
elif args.urls:
|
elif args.urls:
|
||||||
|
|
Loading…
Add table
Reference in a new issue