about summary refs log tree commit diff
path: root/youtube_dl/extractor/sina.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2018-05-26 16:12:44 +0100
committerRemita Amine <remitamine@gmail.com>2018-05-26 16:13:54 +0100
commit68217024e83c8e7965f2800e9ff7a9575f049b5c (patch)
tree0221f6ee7aa6a8379dd936c88cadc9a5d185f79c /youtube_dl/extractor/sina.py
parentec2f3d2800185920629a7e6946701edebbf14dd6 (diff)
downloadyoutube-dl-68217024e83c8e7965f2800e9ff7a9575f049b5c.tar.gz
youtube-dl-68217024e83c8e7965f2800e9ff7a9575f049b5c.tar.xz
youtube-dl-68217024e83c8e7965f2800e9ff7a9575f049b5c.zip
remove unnecessary assignment parenthesis
Diffstat (limited to 'youtube_dl/extractor/sina.py')
-rw-r--r--youtube_dl/extractor/sina.py2
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')