aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-05-23 13:34:33 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-05-23 13:34:33 +0200
commit8f3f1aef0547b29f685068fb8ce97d374aeda421 (patch)
treee05d286edcba72047ad4a7cdbeb11be8a06a6666 /youtube_dl
parent51d2453c7ade642e7f2253ed2211824bd0a2a9ff (diff)
downloadyoutube-dl-8f3f1aef0547b29f685068fb8ce97d374aeda421.tar.xz
Fix HowCast IE
Diffstat (limited to 'youtube_dl')
-rwxr-xr-xyoutube_dl/InfoExtractors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index 42e4d0352..d318b4b03 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -4205,7 +4205,7 @@ class HowcastIE(InfoExtractor):
self.report_extraction(video_id)
- mobj = re.search(r'\'file\': "(http://mobile-media\.howcast\.com/\d+\.mp4)"', webpage)
+ mobj = re.search(r'\'?file\'?: "(http://mobile-media\.howcast\.com/[0-9]+\.mp4)"', webpage)
if mobj is None:
raise ExtractorError(u'Unable to extract video URL')
video_url = mobj.group(1)