From 55c61ca73fd2e8500a21b6b99a0a6436ebec2ec8 Mon Sep 17 00:00:00 2001 From: anikeev-yadro Date: Wed, 2 Nov 2022 09:26:28 +0300 Subject: [PATCH] Fix logger output variable Signed-off-by: anikeev-yadro --- robot/resources/lib/python_keywords/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robot/resources/lib/python_keywords/container.py b/robot/resources/lib/python_keywords/container.py index 02b2febf..1e25b596 100644 --- a/robot/resources/lib/python_keywords/container.py +++ b/robot/resources/lib/python_keywords/container.py @@ -123,7 +123,7 @@ def list_containers(wallet: str, shell: Shell) -> list[str]: """ cli = NeofsCli(shell, NEOFS_CLI_EXEC, WALLET_CONFIG) result = cli.container.list(rpc_endpoint=NEOFS_ENDPOINT, wallet=wallet) - logger.info(f"Containers: \n{output}") + logger.info(f"Containers: \n{result}") return result.stdout.split()