[pornhd] Avoid shadowing variable url

master
Philipp Hagemeister 10 years ago
parent 1525148114
commit 3b4c26a428

@ -39,11 +39,11 @@ class PornHdIE(InfoExtractor):
formats = [ formats = [
{ {
'url': url, 'url': format_url,
'ext': format.lower(), 'ext': format.lower(),
'format_id': '%s-%s' % (format.lower(), quality.lower()), 'format_id': '%s-%s' % (format.lower(), quality.lower()),
'quality': 1 if quality.lower() == 'high' else 0, 'quality': 1 if quality.lower() == 'high' else 0,
} for format, quality, url in re.findall( } for format, quality, format_url in re.findall(
r'var __video([\da-zA-Z]+?)(Low|High)StreamUrl = \'(http://.+?)\?noProxy=1\'', webpage) r'var __video([\da-zA-Z]+?)(Low|High)StreamUrl = \'(http://.+?)\?noProxy=1\'', webpage)
] ]

Loading…
Cancel
Save