[natgeo:episodeguide] Do not shadow url from outer scope
This commit is contained in:
parent
8895be01fc
commit
8a00ea567b
1 changed files with 2 additions and 2 deletions
|
@ -161,8 +161,8 @@ class NationalGeographicEpisodeGuideIE(ThePlatformIE):
|
||||||
r'<div[^>]+class="select-seasons[^"]*".*?<a[^>]*>(.*?)</a>',
|
r'<div[^>]+class="select-seasons[^"]*".*?<a[^>]*>(.*?)</a>',
|
||||||
webpage, 'selected season')
|
webpage, 'selected season')
|
||||||
entries = [
|
entries = [
|
||||||
self.url_result(self._proto_relative_url(url), 'NationalGeographic')
|
self.url_result(self._proto_relative_url(entry_url), 'NationalGeographic')
|
||||||
for url in re.findall('(?s)<div[^>]+class="col-inner"[^>]*?>.*?<a[^>]+href="([^"]+)"', webpage)]
|
for entry_url in re.findall('(?s)<div[^>]+class="col-inner"[^>]*?>.*?<a[^>]+href="([^"]+)"', webpage)]
|
||||||
return self.playlist_result(
|
return self.playlist_result(
|
||||||
entries, '%s-%s' % (display_id, selected_season.lower().replace(' ', '-')),
|
entries, '%s-%s' % (display_id, selected_season.lower().replace(' ', '-')),
|
||||||
'%s - %s' % (show, selected_season))
|
'%s - %s' % (show, selected_season))
|
||||||
|
|
Loading…
Reference in a new issue