From d936a4313ebe3d2d2e719abc025dd9a75f65e8a2 Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Sun, 13 Jan 2019 21:53:36 -0500 Subject: [PATCH] Small logging fix when manual download fail. --- 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 0f4c0137e..1ccf037d8 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -345,7 +345,7 @@ def manual_download_subtitle(path, language, hi, subtitle, provider, providers_a return message else: - logging.error('BAZARR Tried to manually download a subtitles for file: ' + path + " but we weren't able to do (probably throttled by ' + str(subtitle.provider_name) + '. Please retry later or select a subtitles from another provider.") + logging.error("BAZARR Tried to manually download a subtitles for file: " + path + " but we weren't able to do (probably throttled by " + str(subtitle.provider_name) + ". Please retry later or select a subtitles from another provider.") return None logging.debug('BAZARR Ended manually downloading subtitles for file: ' + path)