From 5343b275337ab0ddca6869e09ed967aae4961668 Mon Sep 17 00:00:00 2001 From: Zarithas Date: Thu, 16 Oct 2025 16:49:35 -0400 Subject: [PATCH] Fixed error that was breaking Move agents This was sending only the first char of the string. --- utils/menus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/menus.py b/utils/menus.py index 01295a6..db878c2 100644 --- a/utils/menus.py +++ b/utils/menus.py @@ -80,7 +80,7 @@ def menu_main(api: AirlockAPIWrapper): confirm = Selector.confirm() if direction and devices and confirm: for device in devices: - moveAgentToRelatedPolicy(api,device, direction[0]) + moveAgentToRelatedPolicy(api,device, direction) elif choice == "4": findAgents(api,False) elif choice == "5":