Skip to content

Commit 6107769

Browse files
author
Olli-Pekka Puolitaival
committed
Fix build_data functionality with python 3
1 parent 2a824a1 commit 6107769

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
@@ -1356,4 +1356,4 @@ def merge_build_data(filename, toolchain_report, app_type):
13561356
if 'type' not in build[0]:
13571357
build[0]['type'] = app_type
13581358
build_data['builds'].append(build[0])
1359-
dump(build_data, open(filename, "wb"), indent=4, separators=(',', ': '))
1359+
dump(build_data, open(filename, "w"), indent=4, separators=(',', ': '))

0 commit comments

Comments
 (0)