From 0fcd6c086b28453a9e273b6dc9bb9f0c11d90cec Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 10 Feb 2023 22:16:04 +0700 Subject: [PATCH] add kip log output for is_upcoming or is_live --- tubearchivist/home/src/download/queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tubearchivist/home/src/download/queue.py b/tubearchivist/home/src/download/queue.py index ca7487c2..7c81ebf0 100644 --- a/tubearchivist/home/src/download/queue.py +++ b/tubearchivist/home/src/download/queue.py @@ -264,6 +264,7 @@ class PendingList(PendingIndex): return False # stop if video is streaming live now if vid["live_status"] in ["is_upcoming", "is_live"]: + print(f"{youtube_id}: skip is_upcoming or is_live") return False if vid["live_status"] == "was_live":