about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-12 12:42:06 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-12 12:42:06 +0100
commitd2250ea7fda03acd889995bc3181c3a3038afa09 (patch)
tree38c86d3065d53b57aae6b32390a40d9fb7ed8a30
parentcede88e5bbb0298ac3ca4309588666459feba8e6 (diff)
downloadyoutube-dl-d2250ea7fda03acd889995bc3181c3a3038afa09.tar.gz
youtube-dl-d2250ea7fda03acd889995bc3181c3a3038afa09.tar.xz
youtube-dl-d2250ea7fda03acd889995bc3181c3a3038afa09.zip
[nowvideo] Recognize nowvideo.sx urls (fixes #2127)
-rw-r--r--youtube_dl/extractor/nowvideo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nowvideo.py b/youtube_dl/extractor/nowvideo.py
index 241cc160b..168ca8b9f 100644
--- a/youtube_dl/extractor/nowvideo.py
+++ b/youtube_dl/extractor/nowvideo.py
@@ -5,7 +5,7 @@ from ..utils import compat_urlparse
 
 
 class NowVideoIE(InfoExtractor):
-    _VALID_URL = r'(?:https?://)?(?:www\.)?nowvideo\.ch/video/(?P<id>\w+)'
+    _VALID_URL = r'(?:https?://)?(?:www\.)?nowvideo\.(?:ch|sx)/video/(?P<id>\w+)'
     _TEST = {
         u'url': u'http://www.nowvideo.ch/video/0mw0yow7b6dxa',
         u'file': u'0mw0yow7b6dxa.flv',