Fixed issue #7
This commit is contained in:
parent
b678eda862
commit
096be4faed
1 changed files with 2 additions and 2 deletions
|
@ -200,8 +200,8 @@ class App:
|
|||
return selection.get("episodes")
|
||||
elif args.download:
|
||||
ids = []
|
||||
for x in args.download:
|
||||
ids.extend(selection.from_file(x))
|
||||
for x in args.download.split(", "):
|
||||
ids.extend(selection.from_file(x.strip()))
|
||||
return ids
|
||||
elif args.urls:
|
||||
return args.urls
|
||||
|
|
Loading…
Add table
Reference in a new issue