From 78cd997329c75c6291f3cb39cd39e58414e79dec Mon Sep 17 00:00:00 2001 From: Audionut Date: Fri, 6 Sep 2024 15:41:26 +1000 Subject: [PATCH] Continue if LST is skipped by user --- upload.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.py b/upload.py index f84719679..e6630fc4a 100644 --- a/upload.py +++ b/upload.py @@ -355,12 +355,12 @@ async def do_the_thing(base_dir): upload_to_lst = meta['unattended'] or cli_ui.ask_yes_no(f"Upload to LST? (draft: {draft}) (modq: {modq}) {debug}", default=meta['unattended']) if not upload_to_lst: - return + continue console.print("Uploading to LST") if check_banned_group('LST', lst.banned_groups, meta): - return + continue dupes = await lst.search_existing(meta) dupes = await common.filter_dupes(dupes, meta)