Merge branch 'bugfix/ci_python3_compatibility' into 'master'

CI: fix Python 3 compatibility in example checker

See merge request espressif/esp-idf!10740
pull/5682/merge
Ivan Grokhotkov 2020-10-08 18:10:09 +08:00
commit 2e0c716db7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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