about summary refs log tree commit diff
path: root/youtube_dl/extractor/mangomolo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-01-23 22:23:12 +0700
committerSergey M․ <dstftw@gmail.com>2018-01-23 22:23:12 +0700
commitcf2820710d61742818a906af07f6d6c9669d58a9 (patch)
tree49da7e89124bcbfd9d297906d8436ff1cd107820 /youtube_dl/extractor/mangomolo.py
parent5d7d805ca90992cac1cdffbe5d3df3d894d2b979 (diff)
downloadyoutube-dl-cf2820710d61742818a906af07f6d6c9669d58a9.tar.gz
youtube-dl-cf2820710d61742818a906af07f6d6c9669d58a9.tar.xz
youtube-dl-cf2820710d61742818a906af07f6d6c9669d58a9.zip
Switch codebase to use compat_b64decode
Diffstat (limited to 'youtube_dl/extractor/mangomolo.py')
-rw-r--r--youtube_dl/extractor/mangomolo.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/youtube_dl/extractor/mangomolo.py b/youtube_dl/extractor/mangomolo.py
index dbd761a67..482175a34 100644
--- a/youtube_dl/extractor/mangomolo.py
+++ b/youtube_dl/extractor/mangomolo.py
@@ -1,13 +1,12 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
-import base64
-
 from .common import InfoExtractor
-from ..compat import compat_urllib_parse_unquote
-from ..utils import (
-    int_or_none,
+from ..compat import (
+    compat_b64decode,
+    compat_urllib_parse_unquote,
 )
+from ..utils import int_or_none
 
 
 class MangomoloBaseIE(InfoExtractor):
@@ -51,4 +50,4 @@ class MangomoloLiveIE(MangomoloBaseIE):
     _IS_LIVE = True
 
     def _get_real_id(self, page_id):
-        return base64.b64decode(compat_urllib_parse_unquote(page_id).encode()).decode()
+        return compat_b64decode(compat_urllib_parse_unquote(page_id)).decode()