aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/mangomolo.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-17 08:11:01 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-17 08:11:01 +0100
commitd05ef09d9d94fa70335af5fbaab385b37b16d705 (patch)
treefa4984d0c3b563171aebb94a7696b92f67b12d08 /youtube_dl/extractor/mangomolo.py
parent30d9e20938fa91ece09c376b67030647215d48df (diff)
downloadyoutube-dl-d05ef09d9d94fa70335af5fbaab385b37b16d705.zip
youtube-dl-d05ef09d9d94fa70335af5fbaab385b37b16d705.tar.gz
youtube-dl-d05ef09d9d94fa70335af5fbaab385b37b16d705.tar.bz2
[mangomolo] fix domain regex
Diffstat (limited to 'youtube_dl/extractor/mangomolo.py')
-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 2db503f..1885ac7 100644
--- a/youtube_dl/extractor/mangomolo.py
+++ b/youtube_dl/extractor/mangomolo.py
@@ -41,13 +41,13 @@ class MangomoloBaseIE(InfoExtractor):
class MangomoloVideoIE(MangomoloBaseIE):
IE_NAME = 'mangomolo:video'
- _VALID_URL = r'https?://admin\.mangomolo.com/analytics/index\.php/customers/embed/video\?.*?\bid=(?P<id>\d+)'
+ _VALID_URL = r'https?://admin\.mangomolo\.com/analytics/index\.php/customers/embed/video\?.*?\bid=(?P<id>\d+)'
_IS_LIVE = False
class MangomoloLiveIE(MangomoloBaseIE):
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)+)'
+ _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
def _get_real_id(self, page_id):