diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-08-26 22:03:58 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-08-26 22:03:58 +0600 |
commit | 3d8132f5e20b7cbdaa8f69aca482553b2c02bed8 (patch) | |
tree | 5b323b40d63a4f263826a486c9f59a3de6b7f03f /youtube_dl | |
parent | 39affb5aa427a3a1830e97523470d11bfdbd067e (diff) |
[shared] Extend _VALID_URL to support vivo.sx (Closes #6681)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/shared.py b/youtube_dl/extractor/shared.py index a07677686..000ef1a07 100644 --- a/youtube_dl/extractor/shared.py +++ b/youtube_dl/extractor/shared.py @@ -14,7 +14,7 @@ from ..utils import ( class SharedIE(InfoExtractor): - _VALID_URL = r'http://shared\.sx/(?P<id>[\da-z]{10})' + _VALID_URL = r'http://(?:shared|vivo)\.sx/(?P<id>[\da-z]{10})' _TEST = { 'url': 'http://shared.sx/0060718775', |