From 832e5a035e2c8437903a7408a672e6ae8a10ca5a Mon Sep 17 00:00:00 2001 From: hockeygoalie35 Date: Wed, 7 Feb 2024 23:30:09 -0500 Subject: [PATCH] Adjust text report path --- lidarr/python/ARLChecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lidarr/python/ARLChecker.py b/lidarr/python/ARLChecker.py index eddf80a..48b6c5c 100644 --- a/lidarr/python/ARLChecker.py +++ b/lidarr/python/ARLChecker.py @@ -247,7 +247,7 @@ class LidarrExtendedAPI: os.remove(file_to_delete) def report_status(self, status): - f = open("ARLStatus.txt", "w") + f = open("/custom-services.d/python/ARLStatus.txt", "w") now = datetime.strftime(datetime.now(),"%b-%d-%Y at %H:%M:%S") f.write(f"{now}: ARL Token is {status}.{' Please update arlToken in extended.conf' if status=='EXPIRED' else ''}") f.close()