1
0
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:
Johan Andersson 2015-11-15 15:47:28 +04:00
parent a6e292cfee
commit ba4b36e43e

View File

@ -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)