Skip to content

Commit

Permalink
[jsk_pr2_startup] Remove the slash of the first character for noetic …
Browse files Browse the repository at this point in the history
…(tf2)
  • Loading branch information
tkmtnt7000 committed Dec 6, 2023
1 parent 406bad3 commit 9da2b7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</node>
<node name="empty_cloud_publisher" pkg="jsk_pr2_startup"
type="publish_empty_cloud.py">
<param name="frame_id" value="/laser_tilt_link" />
<param name="frame_id" value="laser_tilt_link" />
</node>

<!-- look path forward when navigation -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class PublishEmptyCloud(ConnectionBasedTransport):
def __init__(self):
super(PublishEmptyCloud, self).__init__()

frame_id = rospy.get_param('~frame_id', '/base_laser_link')
frame_id = rospy.get_param('~frame_id', 'base_laser_link')
max_range = rospy.get_param('~max_range', 25.0)
rotate_points = rospy.get_param('~rotate_points', False)

Expand Down

0 comments on commit 9da2b7c

Please sign in to comment.