about summary refs log tree commit diff
path: root/youtube_dl/extractor/rtve.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-05-03 16:50:16 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-05-10 14:51:38 +0800
commitedaa23f822a1e4a62771422fb598c7bd8ae0a152 (patch)
tree1fd265a1de34eee2e060ab16c0d54c8e6fced647 /youtube_dl/extractor/rtve.py
parentd5ae6bb50124f8320f2b492380480038c487a6d2 (diff)
downloadyoutube-dl-edaa23f822a1e4a62771422fb598c7bd8ae0a152.tar.gz
youtube-dl-edaa23f822a1e4a62771422fb598c7bd8ae0a152.tar.xz
youtube-dl-edaa23f822a1e4a62771422fb598c7bd8ae0a152.zip
[compat] Rename struct_(un)pack to compat_struct_(un)pack
Diffstat (limited to 'youtube_dl/extractor/rtve.py')
-rw-r--r--youtube_dl/extractor/rtve.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py
index f59040877..edd0d108e 100644
--- a/youtube_dl/extractor/rtve.py
+++ b/youtube_dl/extractor/rtve.py
@@ -7,7 +7,7 @@ import time
 
 from .common import InfoExtractor
 from ..compat import (
-    struct_unpack,
+    compat_struct_unpack,
 )
 from ..utils import (
     ExtractorError,
@@ -23,7 +23,7 @@ def _decrypt_url(png):
     encrypted_data = base64.b64decode(png.encode('utf-8'))
     text_index = encrypted_data.find(b'tEXt')
     text_chunk = encrypted_data[text_index - 4:]
-    length = struct_unpack('!I', text_chunk[:4])[0]
+    length = compat_struct_unpack('!I', text_chunk[:4])[0]
     # Use bytearray to get integers when iterating in both python 2.x and 3.x
     data = bytearray(text_chunk[8:8 + length])
     data = [chr(b) for b in data if b != 0]