Skip to content

Commit e83a46c

Browse files
committed
Adding back logic to strip timings from base paths
1 parent 0e12e88 commit e83a46c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/prpy/base/mobilebase.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,11 @@ def _BasePlanWrapper(self, planning_method, args, kw_args):
158158
)
159159
cloned_traj = planning_method(cloned_robot, *args, **kw_args)
160160

161+
config_spec = cloned_robot.GetActiveConfigurationSpecification()
162+
openravepy.planningutils.ConvertTrajectorySpecification(
163+
cloned_traj, config_spec
164+
)
165+
161166
# Copy the trajectory back to the original environment.
162167
from ..util import CopyTrajectory
163168
traj = CopyTrajectory(cloned_traj, env=robot.GetEnv())

0 commit comments

Comments
 (0)