Skip to content

Commit 55a6ca5

Browse files
author
Andriy.Lishchynskyi
committed
Fix python3 compatibility issue
1 parent 7f2caac commit 55a6ca5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/export/cdt/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ def generate(self):
6363

6464
launch_cfgs = {}
6565
for launch_name in supported_launches:
66-
launch = dict(ctx.items() + {'device': self.get_target_config(ctx, launch_name)}.items())
66+
launch = dict(ctx.items())
67+
launch.update({'device': self.get_target_config(ctx, launch_name)}.items())
6768
launch_cfgs.update({launch_name: launch})
6869

6970
if not exists(join(self.export_dir,'eclipse-extras')):

0 commit comments

Comments
 (0)