@@ -205,8 +205,8 @@ def PostProcessPath(self, path, defer=False, executor=None,
205
205
curve through the waypoints (not implemented). If this curve is
206
206
not collision free, then we fall back on...
207
207
4. By default, we run a smoother that jointly times and smooths the
208
- path via self.smoother. This algorithm can change the geometric path to
209
- optimize runtime.
208
+ path via self.smoother. This algorithm can change the geometric path
209
+ to optimize runtime.
210
210
211
211
The behavior in (2) and (3) can be forced by passing constrained=True
212
212
or smooth=True. By default, the case is inferred by the tag(s) attached
@@ -411,8 +411,8 @@ def do_execute():
411
411
else :
412
412
raise ValueError ('Received unexpected value "{:s}" for defer.' .format (str (defer )))
413
413
414
-
415
- def ExecuteTrajectory ( self , traj , defer = False , timeout = None , period = 0.01 , ** kwargs ):
414
+ def ExecuteTrajectory ( self , traj , defer = False , timeout = None , period = 0.01 ,
415
+ ** kwargs ):
416
416
""" Executes a time trajectory on the robot.
417
417
418
418
This function directly executes a timed OpenRAVE trajectory on the
@@ -450,7 +450,7 @@ def ExecuteTrajectory(self, traj, defer=False, timeout=None, period=0.01, **kwar
450
450
# Check that the current configuration of the robot matches the
451
451
# initial configuration specified by the trajectory.
452
452
if not util .IsAtTrajectoryStart (self , traj ):
453
- raise exceptions .TrajectoryAborted (
453
+ raise exceptions .TrajectoryNotExecutable (
454
454
'Trajectory started from different configuration than robot.' )
455
455
456
456
# If there was only one waypoint, at this point we are done!
0 commit comments