Skip to content

Commit 77a31a7

Browse files
committed
[tools][dist] Fix syntax errors
1 parent 4b517c4 commit 77a31a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/mkdist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def bsp_update_kconfig(dist_dir):
119119
found = 1
120120
if line.find('default') != -1 and found:
121121
position = line.find('default')
122-
line = line[0:position] + 'default: "rt-thread"\n'
122+
line = line[0:position] + 'default "rt-thread"\n'
123123
found = 0
124124
f.write(line)
125125

0 commit comments

Comments
 (0)