From d1a94638e170259d80e12722db3de887c2eb8fb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 25 Mar 2020 00:04:32 -0400 Subject: [PATCH] Partial fix for #729 (only Shameless (US)) --- bazarr/get_subtitle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py index 4bfe42d3e..fb4706089 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -878,7 +878,7 @@ def refine_from_db(path, video): "WHERE table_episodes.path = ?", (path_replace_reverse(path),), only_one=True) if data: - video.series, year, country = series_re.match(data['seriesTitle']).groups() + video.series = data['seriesTitle'] video.season = int(data['season']) video.episode = int(data['episode']) video.title = data['episodeTitle']