Skip to content

Commit cc56341

Browse files
authored
ur_moveit_config: Assure the description is loaded as string
Otherwise the description might get loaded as yaml under certain situations.
1 parent a45190f commit cc56341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ur_moveit_config/launch/ur_moveit.launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def launch_setup(context, *args, **kwargs):
125125
" ",
126126
]
127127
)
128-
robot_description = {"robot_description": robot_description_content}
128+
robot_description = {"robot_description": ParameterValue(robot_description_content, value_type=str)}
129129

130130
# MoveIt Configuration
131131
robot_description_semantic_content = Command(

0 commit comments

Comments
 (0)