Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ffmpeg_downloader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def main(prog: str = ""):
parser_download = subparsers.add_parser("download", help="Download FFmpeg")
# specify version and build options (version string or 'snapshot') (optional argument), 5.1.2 or 5.1.2@essential or 5.1.2@arm or snapshot
parser_download.add_argument(
"-d", "--dst", nargs=1, help="Download FFmpeg zip/tar file into <DIR>"
"-d", "--dst", help="Download FFmpeg zip/tar file into <DIR>"
)
parser_download.add_argument(
"-y", action="store_true", help="Don't ask for confirmation to download."
Expand Down