mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
lemonwhale: don't use file as symbolname (py builtin)
Reported by pylint.
This commit is contained in:
parent
54f6b1c3a9
commit
91a4718b36
@ -42,5 +42,6 @@ class Lemonwhale(Service):
|
|||||||
high = mediafiles.find("{http://www.lemonwhale.com/xml11}VideoURLHigh")
|
high = mediafiles.find("{http://www.lemonwhale.com/xml11}VideoURLHigh")
|
||||||
if high.text:
|
if high.text:
|
||||||
yield HTTP(copy.copy(options), high.text, 720)
|
yield HTTP(copy.copy(options), high.text, 720)
|
||||||
file = mediafiles.find("{http://www.lemonwhale.com/xml11}VideoURL").text
|
videourl = mediafiles.find(
|
||||||
yield HTTP(copy.copy(options), file, 480)
|
"{http://www.lemonwhale.com/xml11}VideoURL").text
|
||||||
|
yield HTTP(copy.copy(options), videourl, 480)
|
||||||
|
Loading…
Reference in New Issue
Block a user