From 096be4faedaa3e77ec27e60e6f992ac340fcf794 Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Fri, 31 Jan 2025 17:09:17 -0500 Subject: [PATCH] Fixed issue #7 --- zotify/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zotify/app.py b/zotify/app.py index be8b600..434626d 100644 --- a/zotify/app.py +++ b/zotify/app.py @@ -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