X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Foptions.py;h=f25c12e522d239f088a50916e53308432589e369;hb=8bb1bdfae91246e1306ee31674c06a2ef7e42a08;hp=0176bae75b516e076f9924b21568403eea2fb933;hpb=58b1f00d19d608470540b111f3825eefafbdae97;p=youtube-dl.git diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 0176bae75..f25c12e52 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -264,7 +264,7 @@ def parseOpts(overrideArguments=None): authentication.add_option( '-p', '--password', dest='password', metavar='PASSWORD', - help='account password') + help='account password. If this option is left out, youtube-dl will ask interactively.') authentication.add_option( '-2', '--twofactor', dest='twofactor', metavar='TWOFACTOR', @@ -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(