1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00

hls: avoid unused variable warning (pylint)

This commit is contained in:
Olof Johansson 2014-07-22 10:12:51 +02:00
parent 91a4718b36
commit a8e63f4e60

View File

@ -43,7 +43,7 @@ def _get_full_url(url, srcurl):
def hlsparse(url):
data = get_http_data(url)
globaldata, files = parsem3u(data)
files = (parsem3u(data))[1]
streams = {}
for i in files: