From 77502789bf21b94b6f2fe91b9d677a626ffc9af1 Mon Sep 17 00:00:00 2001 From: Alex Samorukov Date: Wed, 14 Jan 2026 19:08:17 +0100 Subject: [PATCH] Fix function name for getting contact from args This is required to make `contact_timeout` command working --- src/meshcore_cli/meshcore_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index ceae7fc..fc304a3 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -2696,7 +2696,7 @@ async def next_cmd(mc, cmds, json_output=False): case "contact_timeout" : argnum = 2 - contact = await get_contact_from_args(mc, cmds[1]) + contact = await get_contact_from_arg(mc, cmds[1]) if contact is None: if json_output : print(json.dumps({"error" : "unknown contact"}))