Skip to content

Commit e64e105

Browse files
author
David Butterworth
committed
Correction to error message in GetLinearCollisionCheckPts()
1 parent eb7e661 commit e64e105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prpy/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,7 @@ def GetLinearCollisionCheckPts(robot, traj, norm_order=2, sampling_func=None):
12401240
# other values including 'cubic', 'quadric' or 'quintic'
12411241
interp_type = traj_cspec.GetGroupFromName('joint_values').interpolation
12421242
except openravepy.openrave_exception:
1243-
raise ValueError('Failed calling GetGroupFromName()')
1243+
raise ValueError('Trajectory does not have a joint_values group')
12441244
if interp_type != 'linear':
12451245
raise ValueError('Trajectory must be linear in joint space')
12461246

0 commit comments

Comments
 (0)