From 97b8b8257e5ef0659439c3506acfa29a3c967bcc Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Sun, 5 Aug 2018 20:41:03 -0400 Subject: [PATCH] Typo error: replace Sonarr by Radarr --- get_movies.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/get_movies.py b/get_movies.py index 7ebafa5b5..4e36a97d5 100644 --- a/get_movies.py +++ b/get_movies.py @@ -119,11 +119,11 @@ def get_profile_list(): try: profiles_json = requests.get(url_radarr_api_movies, timeout=15) except requests.exceptions.ConnectionError as errc: - logging.exception("Error trying to get profiles from Sonarr. Connection Error.") + logging.exception("Error trying to get profiles from Radarr. Connection Error.") except requests.exceptions.Timeout as errt: - logging.exception("Error trying to get profiles from Sonarr. Timeout Error.") + logging.exception("Error trying to get profiles from Radarr. Timeout Error.") except requests.exceptions.RequestException as err: - logging.exception("Error trying to get profiles from Sonarr.") + logging.exception("Error trying to get profiles from Radarr.") else: # Parsing data returned from radarr for profile in profiles_json.json(): @@ -135,4 +135,4 @@ def profile_id_to_language(id): return profile[1] if __name__ == '__main__': - update_movies() \ No newline at end of file + update_movies()