Skip to content

Commit 40d6463

Browse files
hotfix values unpack Commands.py (#129)
Signed-off-by: Dany M <dany-on-demand@users.noreply.github.com> Co-authored-by: Dany M <dany-on-demand@users.noreply.github.com>
1 parent aa8edce commit 40d6463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self, agent_name: str = "default", load_commands_flag: bool = True)
2323
def get_available_commands(self):
2424
available_commands = []
2525
for command in self.commands:
26-
friendly_name, command_name, command_args = command
26+
friendly_name, command_module, command_name, command_args = command
2727
if (
2828
"commands" in self.agent_config
2929
and friendly_name in self.agent_config["commands"]

0 commit comments

Comments
 (0)