mirror of https://github.com/ARMmbed/mbed-os.git
Fix Python3 bug with `mbed export -S`
parent
c669655d86
commit
e68b328cf8
|
|
@ -167,7 +167,7 @@ def get_args(argv):
|
|||
|
||||
targetnames = TARGET_NAMES
|
||||
targetnames.sort()
|
||||
toolchainlist = list(EXPORTERS.keys() + EXPORTER_ALIASES.keys())
|
||||
toolchainlist = list(EXPORTERS.keys()) + list(EXPORTER_ALIASES.keys())
|
||||
toolchainlist.sort()
|
||||
|
||||
parser.add_argument(
|
||||
|
|
|
|||
Loading…
Reference in New Issue