diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-09 15:57:40 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-09 15:57:42 +0100 |
commit | 43f244b6d51aefac4683d130d70adf94641bf6d8 (patch) | |
tree | 7d0672d6a80e6e181fc0e34bd42d334aebeaa2e4 /youtube_dl | |
parent | 1309b396d0ff87f0e762f8893b6d0bd2aa96432a (diff) |
[YoutubeDL] Do not show worst in --list-formats output
Nobody wants to know what the worst possible format is. And if they do, they can still provide -f worst.
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index c7108dbc1..3975ae0bc 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1546,7 +1546,6 @@ class YoutubeDL(object): line(f, idlen) for f in formats if f.get('preference') is None or f['preference'] >= -1000] if len(formats) > 1: - formats_s[0] += (' ' if self._format_note(formats[0]) else '') + '(worst)' formats_s[-1] += (' ' if self._format_note(formats[-1]) else '') + '(best)' header_line = line({ |