aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/options.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-10 21:09:15 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-10 21:09:18 +0100
commit8bfa75451b6506db324e766ef5d815d10eee5619 (patch)
treea94609a39e48ab9d4f3e97077963428bcf883f6c /youtube_dl/options.py
parentc071733fd441109633bb9bb57007fae754b7610d (diff)
downloadyoutube-dl-8bfa75451b6506db324e766ef5d815d10eee5619.tar.xz
[options] Add --no-call-home
While we're at it, also drop "experimental" moniker for --call-home - should work fine.
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r--youtube_dl/options.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
index 0176bae75..a30974efd 100644
--- a/youtube_dl/options.py
+++ b/youtube_dl/options.py
@@ -508,7 +508,11 @@ def parseOpts(overrideArguments=None):
verbosity.add_option(
'-C', '--call-home',
dest='call_home', action='store_true', default=False,
- help='Contact the youtube-dl server for debugging. (Experimental)')
+ help='Contact the youtube-dl server for debugging.')
+ verbosity.add_option(
+ '--no-call-home',
+ dest='call_home', action='store_false', default=False,
+ help='Do NOT contact the youtube-dl server for debugging.')
filesystem = optparse.OptionGroup(parser, 'Filesystem Options')
filesystem.add_option(