Skip to content

Commit

Permalink
Merge pull request #1037 from tue-robotics/fixes
Browse files Browse the repository at this point in the history
Fix string brackets
  • Loading branch information
MatthijsBurgh committed Jun 14, 2020
2 parents 241735e + cbc9885 commit 9c0f893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robot_skills/src/robot_skills/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def getPlan(self, position_constraint):
try:
resp = self._get_plan_client(pcs)
except Exception as e:
rospy.logerr("Could not get plan from global planner via service call: {}}".format(e))
rospy.logerr("Could not get plan from global planner via service call: {}".format(e))
return None

if not resp.succes:
Expand Down

0 comments on commit 9c0f893

Please sign in to comment.