diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-04 19:56:05 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-04 19:56:05 +0100 |
commit | 29030c0a4c2f4dded5a310add940aae0791f9d73 (patch) | |
tree | a3c5784c9446fd288ae394b340ec93d9d4dadc4b /youtube_dl/extractor/livestream.py | |
parent | 671c0f151d5a7bb5c32a59f483a8e330f1f9a15b (diff) | |
parent | c0ade33e167d1668c4aa8a6684e7083e6c71dd6e (diff) |
Merge remote-tracking branch 'dstftw/correct-valid-urls'
Diffstat (limited to 'youtube_dl/extractor/livestream.py')
-rw-r--r-- | youtube_dl/extractor/livestream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py index 9bc35b115..1dcd1fb2d 100644 --- a/youtube_dl/extractor/livestream.py +++ b/youtube_dl/extractor/livestream.py @@ -11,7 +11,7 @@ from ..utils import ( class LivestreamIE(InfoExtractor): IE_NAME = u'livestream' - _VALID_URL = r'http://new.livestream.com/.*?/(?P<event_name>.*?)(/videos/(?P<id>\d+))?/?$' + _VALID_URL = r'http://new\.livestream\.com/.*?/(?P<event_name>.*?)(/videos/(?P<id>\d+))?/?$' _TEST = { u'url': u'http://new.livestream.com/CoheedandCambria/WebsterHall/videos/4719370', u'file': u'4719370.mp4', |