From e0154741f0be31ba06eeb97f9282f565f20e7753 Mon Sep 17 00:00:00 2001 From: Andy Date: Tue, 30 Sep 2025 05:03:22 +0000 Subject: [PATCH] fix: dl.py old leftover bug, sub-format was default to SRT --- unshackle/commands/dl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unshackle/commands/dl.py b/unshackle/commands/dl.py index 06d1b71..559cfd9 100644 --- a/unshackle/commands/dl.py +++ b/unshackle/commands/dl.py @@ -213,7 +213,7 @@ class dl: @click.option( "--sub-format", type=SubtitleCodecChoice(Subtitle.Codec), - default="srt", + default=None, help="Set Output Subtitle Format, only converting if necessary.", ) @click.option("-V", "--video-only", is_flag=True, default=False, help="Only download video tracks.")