mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-04 10:02:48 +01:00
[extractor/common] Update _get_login_info's comment
This commit is contained in:
parent
2133565cec
commit
32443dd346
@ -683,7 +683,10 @@ class InfoExtractor(object):
|
|||||||
def _get_login_info(self, username_option='username', password_option='password', netrc_machine=None):
|
def _get_login_info(self, username_option='username', password_option='password', netrc_machine=None):
|
||||||
"""
|
"""
|
||||||
Get the login info as (username, password)
|
Get the login info as (username, password)
|
||||||
It will look in the netrc file using the _NETRC_MACHINE value
|
First look for the manually specified credentials using username_option
|
||||||
|
and password_option as keys in params dictionary. If no such credentials
|
||||||
|
available look in the netrc file using the netrc_machine or _NETRC_MACHINE
|
||||||
|
value.
|
||||||
If there's no info available, return (None, None)
|
If there's no info available, return (None, None)
|
||||||
"""
|
"""
|
||||||
if self._downloader is None:
|
if self._downloader is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user