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/sina.py | |
parent | ec2f3d2800185920629a7e6946701edebbf14dd6 (diff) |
remove unnecessary assignment parenthesis
Diffstat (limited to 'youtube_dl/extractor/sina.py')
-rw-r--r-- | youtube_dl/extractor/sina.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/sina.py b/youtube_dl/extractor/sina.py index 8fc66732a..07b766b4a 100644 --- a/youtube_dl/extractor/sina.py +++ b/youtube_dl/extractor/sina.py @@ -64,7 +64,7 @@ class SinaIE(InfoExtractor): # The video id is in the redirected url self.to_screen('Getting video id') request = HEADRequest(url) - (_, urlh) = self._download_webpage_handle(request, 'NA', False) + _, urlh = self._download_webpage_handle(request, 'NA', False) return self._real_extract(urlh.geturl()) else: pseudo_id = mobj.group('pseudo_id') |