Browse Source

[sixplay] add missing parenthesis

master
Remita Amine 5 years ago
parent
commit
3545d38bfb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/sixplay.py

+ 1
- 1
youtube_dl/extractor/sixplay.py View File

@ -65,7 +65,7 @@ class SixPlayIE(InfoExtractor):
for asset in assets:
asset_url = asset.get('full_physical_path')
protocol = asset.get('protocol')
if not asset_url or (protocol == 'primetime' or asset.get('type') == 'usp_hlsfp_h264') and not ('_drmnp.ism/' in asset_url or '_unpnp.ism/' in asset_url) or asset_url in urls:
if not asset_url or ((protocol == 'primetime' or asset.get('type') == 'usp_hlsfp_h264') and not ('_drmnp.ism/' in asset_url or '_unpnp.ism/' in asset_url)) or asset_url in urls:
continue
urls.append(asset_url)
container = asset.get('video_container')


Loading…
Cancel
Save