diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-03 23:23:48 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-03 23:29:56 +0800 |
commit | 38cce791c71e9da33854e56114233d60345e18c0 (patch) | |
tree | 51eb94d8b539d4646a66c347bf0b3f2651b2cf80 /youtube_dl/options.py | |
parent | bf3ae6a543ee8825308e8427f60fceb125a77ab5 (diff) |
Rename --cn-verfication-proxy to --geo-verification-proxy
And deprecate the former one
Since commit f1388739002a7fd1e8e9c41b642734786fc6c391, this option is
not limited to China websites, so rename it.
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index c9033e3cb..f2e3ad7a1 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -210,10 +210,15 @@ def parseOpts(overrideArguments=None): help='Make all connections via IPv6 (experimental)', ) network.add_option( + '--geo-verification-proxy', + dest='geo_verification_proxy', default=None, metavar='URL', + help='Use this proxy to verify the IP address for some geo-restricted sites. ' + 'The default proxy specified by --proxy (or none, if the options is not present) is used for the actual downloading. (experimental)' + ) + network.add_option( '--cn-verification-proxy', dest='cn_verification_proxy', default=None, metavar='URL', - help='Use this proxy to verify the IP address for some Chinese sites. ' - 'The default proxy specified by --proxy (or none, if the options is not present) is used for the actual downloading. (experimental)' + help=optparse.SUPPRESS_HELP, ) selection = optparse.OptionGroup(parser, 'Video Selection') |