diff mbox series

scripts/qemu.py: fix continuation

Message ID 20170918093740.25198-1-alex.bennee@linaro.org
State New
Headers show
Series scripts/qemu.py: fix continuation | expand

Commit Message

Alex Bennée Sept. 18, 2017, 9:37 a.m. UTC
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.bennee@linaro.org>

CC: Amador Pahim <apahim@redhat.com>
CC: Fam Zheng <famz@redhat.com>
CC: Eduardo Habkost <ehabkost@redhat.com>
---
 scripts/qemu.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.14.1
diff mbox series

Patch

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,