Skip to content

Commit 1db1d2d

Browse files
Fix generate_controllers_spawner_launch_description_from_dict (#2146) (#2148)
(cherry picked from commit 3fddf8a) Co-authored-by: danielcostanzi18 <[email protected]>
1 parent 63204a6 commit 1db1d2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controller_manager/controller_manager/launch_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def generate_controllers_spawner_launch_description_from_dict(
122122
"""
123123
if not type(controller_info_dict) is dict:
124124
raise ValueError(f"Invalid controller_info_dict type parsed {controller_info_dict}")
125-
controller_names = controller_info_dict.keys()
125+
controller_names = list(controller_info_dict.keys())
126126
controller_params_files = []
127127
for controller_name in controller_names:
128128
controller_params_file = controller_info_dict[controller_name]

0 commit comments

Comments
 (0)