From 8b405b6e023ad9e7b7da773bcb809fe4d3548895 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Sat, 25 Feb 2023 21:06:11 +0000 Subject: [PATCH] Skip CC extraction if the binary isn't found --- devine/commands/dl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devine/commands/dl.py b/devine/commands/dl.py index 5cd8867..949f8f1 100644 --- a/devine/commands/dl.py +++ b/devine/commands/dl.py @@ -522,7 +522,7 @@ class dl: self.log.error( "Cannot extract Closed Captions as the ccextractor executable was not found..." ) - sys.exit(1) + break video_track_n += 1 final_path = self.mux_tracks(title, not no_folder, not no_source)