Merge pull request #5115 from chaos33/youporn-json

fix youporn extractor's json search regex
This commit is contained in:
Sergey M. 2015-03-03 21:32:13 +06:00
commit 376817c6d4
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class YouPornIE(InfoExtractor):
# Get JSON parameters
json_params = self._search_regex(
r'var currentVideo = new Video\((.*)\)[,;]',
r'var videoJason = (.*)[,;]',
webpage, 'JSON parameters')
try:
params = json.loads(json_params)