aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbashonly <bashonly@bashonly.com>2023-07-27 09:53:22 -0500
committerbashonly <bashonly@bashonly.com>2023-07-27 09:53:22 -0500
commitdae349da97cafe7357106a8f3187fd48a2ad1210 (patch)
tree1f79faede50dbe329ac9c5e82ba4efab1dc6da7e
parent95abea9a03289da1384e5bda3d590223ccc0a238 (diff)
downloadhypervideo-pre-dae349da97cafe7357106a8f3187fd48a2ad1210.tar.lz
hypervideo-pre-dae349da97cafe7357106a8f3187fd48a2ad1210.tar.xz
hypervideo-pre-dae349da97cafe7357106a8f3187fd48a2ad1210.zip
[ie/WrestleUniversePPV] Fix HLS AES key extraction
Fix bug in ef8fb7f029b816dfc95600727d84400591a3b5c5 Closes #7708 Authored by: bashonly
-rw-r--r--yt_dlp/extractor/wrestleuniverse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/wrestleuniverse.py b/yt_dlp/extractor/wrestleuniverse.py
index 99a8f0120..dd12804db 100644
--- a/yt_dlp/extractor/wrestleuniverse.py
+++ b/yt_dlp/extractor/wrestleuniverse.py
@@ -300,7 +300,7 @@ class WrestleUniversePPVIE(WrestleUniverseBaseIE):
info['hls_aes'] = {
'key': hls_aes_key,
'iv': traverse_obj(video_data, ('hls', 'iv', {decrypt})),
- },
+ }
elif traverse_obj(video_data, ('hls', 'encryptType', {int})):
self.report_warning('HLS AES-128 key was not found in API response')