From 69566035544d93d49c406f05f97af25a2edded74 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Tue, 6 Oct 2020 19:16:17 +0200 Subject: [PATCH] CI: fix Python 3 compatibility in example checker --- tools/ci/check_examples_cmake_make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/check_examples_cmake_make.py b/tools/ci/check_examples_cmake_make.py index efcd40837e..7a4f5e36af 100644 --- a/tools/ci/check_examples_cmake_make.py +++ b/tools/ci/check_examples_cmake_make.py @@ -55,7 +55,7 @@ def _get_apps(target, build_system): sys.executable + " " + os.getenv('IDF_PATH') + "/tools/find_apps.py -p examples --recursive --target %s --build-system %s" % (target, build_system), - shell=True) + shell=True).decode('utf-8') o_list = output.split("\n") json_list = [] for j in o_list: