diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-02-18 16:38:55 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-02-18 16:43:54 +0700 |
commit | 7d2b4aa04790b51a0b2b717eed618296115061a8 (patch) | |
tree | cfe0ff80940e18e0cd20929e2504f9071ec8fdf5 /youtube_dl/options.py | |
parent | 38662dfec7309fc1692f4fa85ccc67537590b240 (diff) |
Respect --prefer-insecure while updating (closes #15497)
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 7d1bbc021..4a6067cb8 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -534,7 +534,7 @@ def parseOpts(overrideArguments=None): workarounds.add_option( '--prefer-insecure', '--prefer-unsecure', action='store_true', dest='prefer_insecure', - help='Use an unencrypted connection to retrieve information about the video. (Currently supported only for YouTube)') + help='Use an unencrypted connection to retrieve information whenever possible') workarounds.add_option( '--user-agent', metavar='UA', dest='user_agent', |