Skip to content

Commit

Permalink
[tools][dist] Fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SummerGift committed Jan 15, 2019
1 parent 4b517c4 commit 77a31a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/mkdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def bsp_update_kconfig(dist_dir):
found = 1
if line.find('default') != -1 and found:
position = line.find('default')
line = line[0:position] + 'default: "rt-thread"\n'
line = line[0:position] + 'default "rt-thread"\n'
found = 0
f.write(line)

Expand Down

0 comments on commit 77a31a7

Please sign in to comment.