Commit dab91d9aa00e41ee680524e4f6e99a1e7fe12eb2 broke the invocation by dropping the surrounding braces. I'm not sure how this could have worked, maybe some pythons are more forgiving?
Signed-off-by: Alex Bennée <alex.ben...@linaro.org> CC: Amador Pahim <apa...@redhat.com> CC: Fam Zheng <f...@redhat.com> CC: Eduardo Habkost <ehabk...@redhat.com> --- scripts/qemu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/qemu.py b/scripts/qemu.py index 774e201e8b..2b5c2accb5 100644 --- a/scripts/qemu.py +++ b/scripts/qemu.py @@ -193,8 +193,8 @@ class QEMUMachine(object): qemulog = open(self._qemu_log_path, 'wb') try: self._pre_launch() - self._qemu_full_args = self._wrapper + [self._binary] + - self._base_args() + self._args + self._qemu_full_args = (self._wrapper + [self._binary] + + self._base_args() + self._args) self._popen = subprocess.Popen(self._qemu_full_args, stdin=devnull, stdout=qemulog, -- 2.14.1