From 3807be54178ccfbed37998ac395e07b3099099ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Thu, 15 Aug 2019 22:15:24 -0400 Subject: [PATCH] Another fix for #517 --- bazarr/get_subtitle.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py index 699091ea1..88b61840f 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -678,7 +678,6 @@ def wanted_download_subtitles(path, l, count_episodes): for i in range(len(attempt)): if attempt[i][0] == language: - language = language.split(':')[0] if search_active(attempt[i][1]): notifications.write(msg='Searching for series subtitles...', queue='get_subtitle', item=l, length=count_episodes) @@ -739,7 +738,6 @@ def wanted_download_subtitles_movie(path, l, count_movies): for i in range(len(attempt)): if attempt[i][0] == language: - language = language.split(':')[0] if search_active(attempt[i][1]) is True: notifications.write(msg='Searching for movies subtitles...', queue='get_subtitle', item=l, length=count_movies)