diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-04 22:15:21 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-04 22:15:21 +0200 |
commit | 29a1ab2afc230e5ecb228d31c86077210acf16de (patch) | |
tree | 3b50b29a61082c913f86bae362228b3995a8b67c | |
parent | 659eb98a534223af42b06703223898863b551337 (diff) |
Add alternative --prefer-unsecure spelling (Closes #2697)
-rw-r--r-- | youtube_dl/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 7c135db32..aba8b4537 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -242,7 +242,7 @@ def parseOpts(overrideArguments=None): help='Use the specified HTTP/HTTPS proxy. Pass in an empty string (--proxy "") for direct connection') general.add_option('--no-check-certificate', action='store_true', dest='no_check_certificate', default=False, help='Suppress HTTPS certificate validation.') general.add_option( - '--prefer-insecure', action='store_true', dest='prefer_insecure', + '--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)') general.add_option( '--cache-dir', dest='cachedir', default=get_cachedir(), metavar='DIR', |