diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-04 20:00:23 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-04 20:00:23 +0600 |
commit | 4a3cdf81af9c22c45912b0b4c5845531d52d3a0c (patch) | |
tree | 7e3e501ee9066fa6ee7d20ce2e9c22a1c1caa550 /youtube_dl | |
parent | f777397aca868bd56905d0df8cdbc026c5938e4d (diff) |
[options] Restore some strings
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 9bded4521..d861ac458 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -359,7 +359,7 @@ def parseOpts(overrideArguments=None): video_format.add_option( '--max-quality', action='store', dest='format_limit', metavar='FORMAT', - help='Specify highest quality format to download') + help='Highest quality format to download') video_format.add_option( '-F', '--list-formats', action='store_true', dest='listformats', @@ -399,7 +399,7 @@ def parseOpts(overrideArguments=None): subtitles.add_option( '--sub-format', action='store', dest='subtitlesformat', metavar='FORMAT', default='best', - help='Specify subtitle format preference, for example: "srt" or "ass/srt/best"') + help='Subtitle format, accepts formats preference, for example: "srt" or "ass/srt/best"') subtitles.add_option( '--sub-lang', '--sub-langs', '--srt-lang', action='callback', dest='subtitleslangs', metavar='LANGS', type='str', |