Skip to content

Commit 8f7e7cf

Browse files
authored
Reverted string format of gz_args (#77)
1 parent d1b48a5 commit 8f7e7cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ur_simulation_gz/launch/ur_sim_control.launch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,15 @@ def launch_setup(context, *args, **kwargs):
171171
PythonLaunchDescriptionSource(
172172
[FindPackageShare("ros_gz_sim"), "/launch/gz_sim.launch.py"]
173173
),
174-
launch_arguments={"gz_args": ["-r", "-v", "4", world_file]}.items(),
174+
launch_arguments={"gz_args": [" -r -v 4 ", world_file]}.items(),
175175
condition=IfCondition(gazebo_gui),
176176
)
177177

178178
gz_launch_description_without_gui = IncludeLaunchDescription(
179179
PythonLaunchDescriptionSource(
180180
[FindPackageShare("ros_gz_sim"), "/launch/gz_sim.launch.py"]
181181
),
182-
launch_arguments={"gz_args": ["-s", "-r", "-v", "4", world_file]}.items(),
182+
launch_arguments={"gz_args": [" -s -r -v 4 ", world_file]}.items(),
183183
condition=UnlessCondition(gazebo_gui),
184184
)
185185

0 commit comments

Comments
 (0)