Skip to content

Commit 3760e9f

Browse files
Olli-Pekka PuolitaivalCruz Monrreal II
authored andcommitted
Fix build_data functionality with python 3
1 parent df61693 commit 3760e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,4 +1414,4 @@ def merge_build_data(filename, toolchain_report, app_type):
14141414
if 'type' not in build[0]:
14151415
build[0]['type'] = app_type
14161416
build_data['builds'].append(build[0])
1417-
dump(build_data, open(filename, "wb"), indent=4, separators=(',', ': '))
1417+
dump(build_data, open(filename, "w"), indent=4, separators=(',', ': '))

0 commit comments

Comments
 (0)