mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-28 06:04:17 +01:00
ruv: print the url instead of %s
This commit is contained in:
parent
a6e292cfee
commit
ba4b36e43e
@ -36,7 +36,7 @@ class Ruv(Service):
|
||||
else:
|
||||
match = re.search(r'<source [^ ]*[ ]*src="([^"]+)" ', self.get_urldata())
|
||||
if not match:
|
||||
yield ServiceError("Can't find video info for: %s", self.url)
|
||||
yield ServiceError("Can't find video info for: %s" % self.url)
|
||||
return
|
||||
if match.group(1).endswith("mp4"):
|
||||
yield HTTP(copy.copy(options), match.group(1), 800)
|
||||
|
Loading…
Reference in New Issue
Block a user