CI: fix Python 3 compatibility in example checker

This commit is contained in:
Roland Dobai 2020-10-06 19:16:17 +02:00
parent e456af6537
commit 6956603554

View File

@ -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: