commit: 3b4c26a4286451ca0236245fe42ae9e8b9aafff8
parent 152514811429b393be22e15742aa8ba1498d739c
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Fri, 4 Apr 2014 22:22:30 +0200
[pornhd] Avoid shadowing variable url
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/youtube_dl/extractor/pornhd.py b/youtube_dl/extractor/pornhd.py
@@ -39,11 +39,11 @@ class PornHdIE(InfoExtractor):
formats = [
{
- 'url': url,
+ 'url': format_url,
'ext': format.lower(),
'format_id': '%s-%s' % (format.lower(), quality.lower()),
'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)
]