]> code.ossystems Code Review - openembedded-core.git/commit
scripts/runqemu: Replace subprocess.run() for compatibilty
authorMichael Halstead <mhalstead@linuxfoundation.org>
Thu, 8 Nov 2018 20:58:39 +0000 (12:58 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 6 Dec 2018 10:12:53 +0000 (10:12 +0000)
commit1c61f3017a6a2d95747883c722c376763ec77c9d
tree22cbb058b5e680802fd46ac631f8eb04f63207e6
parent6637f400fb01501353f376d73658b359cedfa3c2
scripts/runqemu: Replace subprocess.run() for compatibilty

subprocess.run() was introduced in Python 3.5. We currently support down to
Python 3.4 so I've replaced it with subprocess.check_call() which is available
in that version.

Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu