diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-04-24 21:16:10 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-04-24 21:16:10 +0200 |
commit | a3d689cfb3b8d6320104bb70725679bc2d336f77 (patch) | |
tree | 19a71eedecef992c90775ad3c339ec6e01028f18 | |
parent | 7b670a4483d589af822e7fc061d1d3d3aafd36f0 (diff) |
Fix InfoQ
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index d5876ad34..53d65c02e 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -2861,7 +2861,7 @@ class InfoQIE(InfoExtractor): self.report_extraction(url) # Extract video URL - mobj = re.search(r"jsclassref='([^']*)'", webpage) + mobj = re.search(r"jsclassref ?= ?'([^']*)'", webpage) if mobj is None: self._downloader.report_error(u'unable to extract video url') return |