diff options
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 2ff0fbfc1..099b151c6 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -479,6 +479,10 @@ def parseOpts(overrideArguments=None): action='store_true', dest='usenetrc', default=False, help='Use .netrc authentication data') authentication.add_option( + '--netrc-location', + dest='netrc_location', metavar='PATH', + help='Location of .netrc authentication data; either the path or its containing directory. Defaults to ~/.netrc') + authentication.add_option( '--video-password', dest='videopassword', metavar='PASSWORD', help='Video password (vimeo, youku)') |