mirror of https://github.com/ARMmbed/mbed-os.git
Fix python3 compatibility issue
parent
7f2caacbdd
commit
55a6ca5b1a
|
@ -63,7 +63,8 @@ class Eclipse(Makefile):
|
|||
|
||||
launch_cfgs = {}
|
||||
for launch_name in supported_launches:
|
||||
launch = dict(ctx.items() + {'device': self.get_target_config(ctx, launch_name)}.items())
|
||||
launch = dict(ctx.items())
|
||||
launch.update({'device': self.get_target_config(ctx, launch_name)}.items())
|
||||
launch_cfgs.update({launch_name: launch})
|
||||
|
||||
if not exists(join(self.export_dir,'eclipse-extras')):
|
||||
|
|
Loading…
Reference in New Issue