[pornhd] Avoid shadowing variable url
This commit is contained in:
parent
1525148114
commit
3b4c26a428
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue