Browse Source

Fix stretch_driver bug in mobile base command group

autodock/behaviortree
Binit Shah 1 year ago
parent
commit
c9dfd4a97d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      stretch_core/nodes/command_groups.py

+ 1
- 1
stretch_core/nodes/command_groups.py View File

@ -504,7 +504,7 @@ class MobileBaseCommandGroup(SimpleCommandGroup):
self.index_rotate_mobile_base = commanded_joint_names.index('rotate_mobile_base')
else:
err_str = ("MobileBaseCommandGroup.update: Must be in position mode to receive a command for the {0} joint(s). "
"Current mode = {1}.").format(active_positioning_joint_names, robot_mode)
"Current mode = {1}.").format(active_incrementing_joint_names, robot_mode)
invalid_joints_callback(err_str)
return False

Loading…
Cancel
Save