From 6b06c863e03574ec5c81af7658be5b4a3e9afa96 Mon Sep 17 00:00:00 2001 From: hockeygoalie35 Date: Sat, 27 Apr 2024 22:56:06 -0400 Subject: [PATCH] 2.0RC - Add Pushover & ntfy support --- lidarr/python/ARLChecker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lidarr/python/ARLChecker.py b/lidarr/python/ARLChecker.py index 7f5b342..69477a9 100644 --- a/lidarr/python/ARLChecker.py +++ b/lidarr/python/ARLChecker.py @@ -376,9 +376,9 @@ def ntfy_notify(server_plus_topic, message, token): # Send Notification to ntfy log.info(Fore.GREEN + 'ntfy notification sent successfully' + Fore.RESET) except Exception as e: if "Failed to resolve" in str(e): - log.error(Fore.RED + "ntfy ERROR: Check if server and user token correct in extended.conf") + log.error(Fore.RED + "ntfy ERROR: Check if server and user token correct in extended.conf"+Fore.RESET) else: - print("NTFY ERROR: "+str(e)) + log.error(Fore.RED + "NTFY ERROR: "+str(e)+Fore.RESET) def check_token(token=None): log = logging.getLogger('ARLChecker')