aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-09-15 22:26:37 +0700
committerSergey M․ <dstftw@gmail.com>2016-09-15 22:26:37 +0700
commit2133565cec3646680600d314b93e535f6fa52339 (patch)
tree6c73e8f2cfc709101544e011a1522d5acf982291 /youtube_dl/extractor/common.py
parent1da50aa34e9fa0fd927de8197dcf2884551dd800 (diff)
downloadyoutube-dl-2133565cec3646680600d314b93e535f6fa52339.tar.xz
[extractor/common] Simplify _get_login_info
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index e413799f9..9627816b4 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -689,8 +689,6 @@ class InfoExtractor(object):
if self._downloader is None:
return (None, None)
- username = None
- password = None
downloader_params = self._downloader.params
# Attempt to use provided username and password or .netrc data
@@ -700,7 +698,7 @@ class InfoExtractor(object):
else:
username, password = self._get_netrc_login_info(netrc_machine)
- return (username, password)
+ return username, password
def _get_tfa_info(self, note='two-factor verification code'):
"""