mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +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') +
|
||||
"/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:
|
||||
|
Reference in New Issue
Block a user