From 99594a11ce6eba9bb7d8f6455a368040b86f5ffa Mon Sep 17 00:00:00 2001 From: pukkandan Date: Sun, 7 Mar 2021 12:32:59 +0530 Subject: [PATCH] Remove "fixup is ignored" warning when fixup wasn't passed by user Closes #151 --- yt_dlp/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 2d7961f0f..adef0e0a8 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1154,7 +1154,7 @@ def parseOpts(overrideArguments=None): help='Write metadata to the video file\'s xattrs (using dublin core and xdg standards)') postproc.add_option( '--fixup', - metavar='POLICY', dest='fixup', default='detect_or_warn', + metavar='POLICY', dest='fixup', default=None, help=( 'Automatically correct known faults of the file. ' 'One of never (do nothing), warn (only emit a warning), '