From d0bae36d83fcc657dae25a906f6a2e1d5ea8ca48 Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Tue, 22 Aug 2023 15:02:09 +0300 Subject: [PATCH] - +1 minor fix --- src/agent_gsm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent_gsm.py b/src/agent_gsm.py index ea00c44..e2775c4 100644 --- a/src/agent_gsm.py +++ b/src/agent_gsm.py @@ -360,7 +360,7 @@ def run_probe(): # Did we fetch anything ? if new_tasks: - utils.log(f' Task list found in cache.') + utils.log(f' Task list found.') # Merge with existing ones. Some tasks can be removed, some can be add. changed = TASK_LIST.merge_with(incoming_tasklist = new_tasks) CACHE.put_tasks(name=BackendServer.phone.name, tasks=TASK_LIST)