fix: dl.py

old leftover bug, sub-format was default to SRT
This commit is contained in:
Andy
2025-09-30 05:03:22 +00:00
parent ceea4ac827
commit e0154741f0

View File

@@ -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.")