From 7a6c315d52b71e07810003ca8c81c72a80af5ac9 Mon Sep 17 00:00:00 2001 From: Chris Redpath Date: Mon, 18 Mar 2019 14:35:17 +0000 Subject: [PATCH] lisa/target: fix specifying tools to install in target conf Looks like we missed this in restructuring these classes. Remove the superfluous target from the call. Signed-off-by: Chris Redpath --- lisa/target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisa/target.py b/lisa/target.py index 878ce0693..e9f789190 100644 --- a/lisa/target.py +++ b/lisa/target.py @@ -261,7 +261,7 @@ class Target(Loggable, HideExekallID, Configurable): # Initialize binary tools to deploy if tools: logger.info('Tools to install: %s', tools) - self.install_tools(target, tools) + self.install_tools(tools) # Autodetect information from the target, after the Target is # initialized. Expensive computations are deferred so they will only be -- GitLab