summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-16 20:10:47 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-16 20:10:47 +0100
commitfc86d4eed0bf10f8f90326472811e5b4d4ad4bd9 (patch)
tree13bbd06b3ceb7a661b6c23633919250e6f244694
parent7d273a387aade7665cd25eee69d94ee615d9a4b9 (diff)
downloadyoutube-dl-fc86d4eed0bf10f8f90326472811e5b4d4ad4bd9.tar.gz
youtube-dl-fc86d4eed0bf10f8f90326472811e5b4d4ad4bd9.tar.xz
youtube-dl-fc86d4eed0bf10f8f90326472811e5b4d4ad4bd9.zip
[mangomolo] fix typo
-rw-r--r--youtube_dl/extractor/mangomolo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/mangomolo.py b/youtube_dl/extractor/mangomolo.py
index 8cac8ace2..2db503f2b 100644
--- a/youtube_dl/extractor/mangomolo.py
+++ b/youtube_dl/extractor/mangomolo.py
@@ -40,13 +40,13 @@ class MangomoloBaseIE(InfoExtractor):
 
 
 class MangomoloVideoIE(MangomoloBaseIE):
-    IENAME = 'mangomolo:video'
+    IE_NAME = 'mangomolo:video'
     _VALID_URL = r'https?://admin\.mangomolo.com/analytics/index\.php/customers/embed/video\?.*?\bid=(?P<id>\d+)'
     _IS_LIVE = False
 
 
 class MangomoloLiveIE(MangomoloBaseIE):
-    IENAME = 'mangomolo:live'
+    IE_NAME = 'mangomolo:live'
     _VALID_URL = r'https?://admin\.mangomolo.com/analytics/index\.php/customers/embed/index\?.*?\bchannelid=(?P<id>(?:[A-Za-z0-9+/=]|%2B|%2F|%3D)+)'
     _IS_LIVE = True