From 628a4bdc9fa7fa2b89d03383a1a4cf4d7b565ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Tue, 15 Sep 2020 09:27:51 -0400 Subject: [PATCH] Fix for release not split correctly with addic7ed. --- libs/subliminal_patch/providers/addic7ed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/subliminal_patch/providers/addic7ed.py b/libs/subliminal_patch/providers/addic7ed.py index 5bed2c95d..0849ff164 100644 --- a/libs/subliminal_patch/providers/addic7ed.py +++ b/libs/subliminal_patch/providers/addic7ed.py @@ -36,7 +36,7 @@ class Addic7edSubtitle(_Addic7edSubtitle): download_link): super(Addic7edSubtitle, self).__init__(language, hearing_impaired, page_link, series, season, episode, title, year, version, download_link) - self.release_info = version + self.release_info = version.replace('+', ',') def get_matches(self, video): matches = super(Addic7edSubtitle, self).get_matches(video)