Skip to content

Commit e68b328

Browse files
committed
Fix Python3 bug with mbed export -S
1 parent c669655 commit e68b328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def get_args(argv):
167167

168168
targetnames = TARGET_NAMES
169169
targetnames.sort()
170-
toolchainlist = list(EXPORTERS.keys() + EXPORTER_ALIASES.keys())
170+
toolchainlist = list(EXPORTERS.keys()) + list(EXPORTER_ALIASES.keys())
171171
toolchainlist.sort()
172172

173173
parser.add_argument(

0 commit comments

Comments
 (0)