diff options
author | Remita Amine <remitamine@gmail.com> | 2018-05-26 16:12:44 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2018-05-26 16:13:54 +0100 |
commit | 68217024e83c8e7965f2800e9ff7a9575f049b5c (patch) | |
tree | 0221f6ee7aa6a8379dd936c88cadc9a5d185f79c /youtube_dl/extractor/fc2.py | |
parent | ec2f3d2800185920629a7e6946701edebbf14dd6 (diff) |
remove unnecessary assignment parenthesis
Diffstat (limited to 'youtube_dl/extractor/fc2.py')
-rw-r--r-- | youtube_dl/extractor/fc2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/fc2.py b/youtube_dl/extractor/fc2.py index 448647d72..435561147 100644 --- a/youtube_dl/extractor/fc2.py +++ b/youtube_dl/extractor/fc2.py @@ -46,7 +46,7 @@ class FC2IE(InfoExtractor): }] def _login(self): - (username, password) = self._get_login_info() + username, password = self._get_login_info() if username is None or password is None: return False |