aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M. <dstftw@gmail.com>2015-06-29 21:14:49 +0500
committerSergey M. <dstftw@gmail.com>2015-06-29 21:14:49 +0500
commit54f428f645b7f9db235a156f829896ea2da8495a (patch)
tree188caba16e0504086a3dcbd8baa122db45d1d7f1
parentdc2bd20e5599b4bc32d0cf68af402d9b972a309e (diff)
parent738b92632296a9fee3eb7e0c915f6ea6b395125f (diff)
downloadyoutube-dl-54f428f645b7f9db235a156f829896ea2da8495a.tar.xz
Merge pull request #6120 from nawl/master
[hentaistigma] Fix video extractor
-rw-r--r--youtube_dl/extractor/hentaistigma.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/hentaistigma.py b/youtube_dl/extractor/hentaistigma.py
index 63d87b74c..225af8cb3 100644
--- a/youtube_dl/extractor/hentaistigma.py
+++ b/youtube_dl/extractor/hentaistigma.py
@@ -32,7 +32,7 @@ class HentaiStigmaIE(InfoExtractor):
wrap_webpage = self._download_webpage(wrap_url, video_id)
video_url = self._html_search_regex(
- r'clip:\s*{\s*url: "([^"]*)"', wrap_webpage, 'video url')
+ r'file:"([^"]+)"', wrap_webpage, 'video url')
return {
'id': video_id,