Skip to content

Commit 1ee7d8b

Browse files
author
Cruz Monrreal
authored
Merge pull request #7481 from theotherjimmy/py3-export-supported
Tools: Fix py3 bug with mbed export -S
2 parents def1ef2 + e68b328 commit 1ee7d8b

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)