about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-09-23 01:44:38 +0600
committerSergey M․ <dstftw@gmail.com>2015-09-23 01:44:38 +0600
commit5600e214c3b63e3e2a0862bea230026c02073d7a (patch)
tree9cb8eb996e973b2383527b46a73b1991808d5bca
parent6400f8ec0f20011a7e39da62e0a3e55e0fd2759a (diff)
downloadyoutube-dl-5600e214c3b63e3e2a0862bea230026c02073d7a.tar.gz
youtube-dl-5600e214c3b63e3e2a0862bea230026c02073d7a.tar.xz
youtube-dl-5600e214c3b63e3e2a0862bea230026c02073d7a.zip
[9gag] Make post view regex more robust
-rw-r--r--youtube_dl/extractor/ninegag.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ninegag.py b/youtube_dl/extractor/ninegag.py
index d157b0d10..692cc3368 100644
--- a/youtube_dl/extractor/ninegag.py
+++ b/youtube_dl/extractor/ninegag.py
@@ -59,7 +59,8 @@ class NineGagIE(InfoExtractor):
         webpage = self._download_webpage(url, display_id)
 
         post_view = json.loads(self._html_search_regex(
-            r'var postView = new app\.PostView\({\s*post:\s*({.+?}),\s*posts:\s*prefetchedCurrentPost', webpage, 'post view'))
+            r'var\s+postView\s*=\s*new\s+app\.PostView\({\s*post:\s*({.+?})\s*,\s*posts:\s*prefetchedCurrentPost',
+            webpage, 'post view'))
 
         ie_key = None
         source_url = post_view.get('sourceUrl')