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/tumblr.py | |
| parent | ec2f3d2800185920629a7e6946701edebbf14dd6 (diff) | |
remove unnecessary assignment parenthesis
Diffstat (limited to 'youtube_dl/extractor/tumblr.py')
| -rw-r--r-- | youtube_dl/extractor/tumblr.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/tumblr.py b/youtube_dl/extractor/tumblr.py index 89e6eb5ab..edbb0aa69 100644 --- a/youtube_dl/extractor/tumblr.py +++ b/youtube_dl/extractor/tumblr.py @@ -108,7 +108,7 @@ class TumblrIE(InfoExtractor):          self._login()      def _login(self): -        (username, password) = self._get_login_info() +        username, password = self._get_login_info()          if username is None:              return | 
