From bddcbabd0b0a9792a579d6e3c7e63c85daecc0da Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sat, 7 Jun 2014 21:56:28 +0200 Subject: [PATCH] subtitle_wsrt: it should be --> and not -> --- lib/svtplay_dl/subtitle/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svtplay_dl/subtitle/__init__.py b/lib/svtplay_dl/subtitle/__init__.py index 06eee55..db779bd 100644 --- a/lib/svtplay_dl/subtitle/__init__.py +++ b/lib/svtplay_dl/subtitle/__init__.py @@ -112,7 +112,7 @@ class subtitle_wsrt(subtitle): if subtract: hour1 -= 10 hour2 -= 10 - time = "%s:%s:%s -> %s:%s:%s" % (hour1, match.group(2), match.group(3).replace(".", ","), hour2, match.group(5), match.group(6).replace(".", ",")) + time = "%s:%s:%s --> %s:%s:%s" % (hour1, match.group(2), match.group(3).replace(".", ","), hour2, match.group(5), match.group(6).replace(".", ",")) sub = "%s\n%s\n%s\n" % (i.group(1), time, i.group(4)) if len(i.group(6)) > 0: sub += "%s\n" % i.group(6)