diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-06-02 13:13:00 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 11:49:50 +0100 |
commit | ae4d36375683b6cfd48af25bfca70b2e77f7ade5 (patch) | |
tree | 578f7d07c097dd604d3d0bc682b2f2f798f43e72 /scripts/cleanup-workdir | |
parent | bf1b411eb1cd2cc960325d5fdb0cb4f4f7b1e40e (diff) | |
download | openembedded-core-ae4d36375683b6cfd48af25bfca70b2e77f7ade5.tar.gz openembedded-core-ae4d36375683b6cfd48af25bfca70b2e77f7ade5.tar.bz2 openembedded-core-ae4d36375683b6cfd48af25bfca70b2e77f7ade5.zip |
scripts: python3: decode subprocess output
stdeout and stderr content returned by subprocess API has different
types in Python 3(bytes) and Python 2(string). Decoding it to
'utf-8' makes it unicode on both pythons.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/cleanup-workdir')
-rwxr-xr-x | scripts/cleanup-workdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir index fee464c31d..0b2cf99d78 100755 --- a/scripts/cleanup-workdir +++ b/scripts/cleanup-workdir @@ -45,7 +45,7 @@ def run_command(cmd): if pipe.returncode != 0: print("Execute command '%s' failed." % cmd) sys.exit(1) - return output + return output.decode('utf-8') def get_cur_arch_dirs(workdir, arch_dirs): pattern = workdir + '/(.*?)/' |