From 0f0e9fc459ffaba8c3dc0b225d2a74cc798380c1 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sun, 27 May 2018 15:54:24 +0200 Subject: [PATCH] urplay: only send the label to the subtitle --- lib/svtplay_dl/service/urplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svtplay_dl/service/urplay.py b/lib/svtplay_dl/service/urplay.py index f35f495..1ac78b8 100644 --- a/lib/svtplay_dl/service/urplay.py +++ b/lib/svtplay_dl/service/urplay.py @@ -36,7 +36,7 @@ class Urplay(Service, OpenGraphThumbMixin): else: subtype = "tt" if self.config.get("get_all_subtitles"): - yield subtitle(copy.copy(self.config), subtype, absurl, "-" + filenamify(sub["label"]), output=self.output) + yield subtitle(copy.copy(self.config), subtype, absurl, sub["label"], output=self.output) else: yield subtitle(copy.copy(self.config), subtype, absurl, output=self.output)