From 96ea9a15faa5e65f9caa1934df900a91829aacbc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Louis-Francis=20Ratt=C3=A9-Boulianne?= <lfrb@collabora.com>
Date: Wed, 14 Dec 2016 14:39:20 -0500
Subject: [PATCH] Unpack arguments list when calling run command
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The target.run() function expects to receive the arguments
unpacked.

Signed-off-by: Louis-Francis Ratté-Boulianne <lfrb@collabora.com>
Reviewed-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D5287
---
 tools/ade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ade b/tools/ade
index 1d24e57..e2e8258 100755
--- a/tools/ade
+++ b/tools/ade
@@ -1259,7 +1259,7 @@ class Ade:
 
     def do_run(self):
         target = self.get_target()
-        target.run(self.app, self.args)
+        target.run(self.app, *self.args)
 
     def info(self, message):
         if self.format == 'friendly':
-- 
GitLab