Browse Source

[fktv] Don't redefine 'url' in list comprehension

Detected with flake8.
totalwebcasting
Jaime Marquínez Ferrándiz 9 years ago
parent
commit
4866b72eb2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/fktv.py

+ 2
- 2
youtube_dl/extractor/fktv.py View File

@ -44,9 +44,9 @@ class FKTVIE(InfoExtractor):
urls = re.findall(r'<source[^>]+src="([^"]+)"', sources)
formats = [{
'url': url,
'url': furl,
'format_id': determine_ext(url),
} for url in urls]
} for furl in urls]
return {
'id': episode,
'title': title,


Loading…
Cancel
Save