diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-03-07 12:32:59 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-03-07 12:32:59 +0530 |
commit | 99594a11ce6eba9bb7d8f6455a368040b86f5ffa (patch) | |
tree | 7fc88b2530d953b981fa7a3d4ad1c54a6f356adf | |
parent | 2be71994c0ceddaca46ed142ba31f4c7be59a0d0 (diff) | |
download | hypervideo-pre-99594a11ce6eba9bb7d8f6455a368040b86f5ffa.tar.lz hypervideo-pre-99594a11ce6eba9bb7d8f6455a368040b86f5ffa.tar.xz hypervideo-pre-99594a11ce6eba9bb7d8f6455a368040b86f5ffa.zip |
Remove "fixup is ignored" warning when fixup wasn't passed by user
Closes #151
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
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), ' |