From be670dc6424e946ff8f3935e0cbd0a7f3868227d Mon Sep 17 00:00:00 2001 From: Mandar Patil Date: Sun, 30 Jun 2024 09:41:36 -0700 Subject: [PATCH] Fix incorrect command in notification message (#240) --- src/notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notify.py b/src/notify.py index cda37ecc..026c7de8 100644 --- a/src/notify.py +++ b/src/notify.py @@ -86,8 +86,8 @@ def send(config, username, last_send=None, dry_run=False): sent_on = None message = f"""Two-step authentication for iCloud Drive, Photos (Docker) is required. Please login to your server and authenticate. Please run - - `docker exec -it --user=icd icloud /bin/sh -c - "icloud --session-directory=/app/session_data --username={username}"`.""" + `docker exec -it icloud /bin/sh -c + "icloud --session-directory=/config/session_data --username={username}"`.""" subject = f"icloud-docker: Two step authentication is required for {username}" notify_telegram( config=config, message=message, last_send=last_send, dry_run=dry_run