mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 20:24:32 +02:00
CI: fix Python 3 compatibility in example checker
This commit is contained in:
@@ -55,7 +55,7 @@ def _get_apps(target, build_system):
|
|||||||
sys.executable + " " + os.getenv('IDF_PATH') +
|
sys.executable + " " + os.getenv('IDF_PATH') +
|
||||||
"/tools/find_apps.py -p examples --recursive --target %s --build-system %s"
|
"/tools/find_apps.py -p examples --recursive --target %s --build-system %s"
|
||||||
% (target, build_system),
|
% (target, build_system),
|
||||||
shell=True)
|
shell=True).decode('utf-8')
|
||||||
o_list = output.split("\n")
|
o_list = output.split("\n")
|
||||||
json_list = []
|
json_list = []
|
||||||
for j in o_list:
|
for j in o_list:
|
||||||
|
Reference in New Issue
Block a user