Skip to content

Commit

Permalink
Replace double quotes with single ones (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Nov 19, 2023
1 parent 5dba0f9 commit f991075
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gazebo_ros2_control_demos/launch/tricycle_drive.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ def generate_launch_description():
)

rviz = Node(
package="rviz2",
executable="rviz2",
package='rviz2',
executable='rviz2',
arguments=[
"-d",
os.path.join(gazebo_ros2_control_demos_path, "config/config.rviz"),
'-d',
os.path.join(gazebo_ros2_control_demos_path, 'config/config.rviz'),
],
output="screen",
output='screen',
)

return LaunchDescription([
Expand Down

0 comments on commit f991075

Please sign in to comment.