about summary refs log tree commit diff
path: root/youtube_dl/extractor/hentaistigma.py
diff options
context:
space:
mode:
authornawl <dylanlwrigh@gmail.com>2015-06-28 17:24:00 -0600
committernawl <dylanlwrigh@gmail.com>2015-06-28 17:24:00 -0600
commit738b92632296a9fee3eb7e0c915f6ea6b395125f (patch)
treeb12c7739cc2336c6d572d26934fde2c14040126c /youtube_dl/extractor/hentaistigma.py
parent1bbe660dfa713d377fdf0eeec6b6d6a5fa8c86d9 (diff)
downloadyoutube-dl-738b92632296a9fee3eb7e0c915f6ea6b395125f.tar.gz
youtube-dl-738b92632296a9fee3eb7e0c915f6ea6b395125f.tar.xz
youtube-dl-738b92632296a9fee3eb7e0c915f6ea6b395125f.zip
[hentaistigma] Fix video extractor
Diffstat (limited to 'youtube_dl/extractor/hentaistigma.py')
-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,