diff options
author | Sergey M. <dstftw@gmail.com> | 2015-04-27 16:44:58 +0500 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2015-04-27 16:44:58 +0500 |
commit | 40b96352c99953aec9272574729077c06c235747 (patch) | |
tree | 692f020f9f8b030d1fc008c59a92bc94138023e3 /youtube_dl/options.py | |
parent | 189ba90996d810ea00b165d20d320869efe14518 (diff) | |
parent | 0d1bd5d62f29cc1a02c4dd5cea55fe018f9fea97 (diff) |
Merge pull request #5523 from jaimeMF/remove-format-limit
Remove the --max-quality option
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 39c38c980..4c9d39d9a 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -332,10 +332,6 @@ def parseOpts(overrideArguments=None): action='store_true', dest='prefer_free_formats', default=False, help='Prefer free video formats unless a specific one is requested') video_format.add_option( - '--max-quality', - action='store', dest='format_limit', metavar='FORMAT', - help='Highest quality format to download') - video_format.add_option( '-F', '--list-formats', action='store_true', dest='listformats', help='List all available formats') |