Fix W504 and disable W503 (closes #20863)
[youtube-dl] / youtube_dl / extractor / ooyala.py
index e42d67df9a426bc249c702f0d90a8cfbd59e435b..995b24d1bd4758f0c51350d517a52a83053d584f 100644 (file)
@@ -31,8 +31,8 @@ class OoyalaBaseIE(InfoExtractor):
         title = metadata['title']
 
         auth_data = self._download_json(
-            self._AUTHORIZATION_URL_TEMPLATE % (pcode, embed_code) +
-            compat_urllib_parse_urlencode({
+            self._AUTHORIZATION_URL_TEMPLATE % (pcode, embed_code)
+            compat_urllib_parse_urlencode({
                 'domain': domain,
                 'supportedFormats': supportedformats or 'mp4,rtmp,m3u8,hds,dash,smooth',
                 'embedToken': embed_token,