Skip to content

Commit 07fc93f

Browse files
committed
Fixing two bugs in the referenced issue.
1 parent 7aa675b commit 07fc93f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/prpy/planning/vectorfield.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def TerminateMove():
179179
return Status.CONTINUE
180180

181181
return self.FollowVectorField(robot, vf_straightline, TerminateMove,
182-
timelimit)
182+
timelimit, **kw_args)
183183

184184
@PlanningMethod
185185
def FollowVectorField(self, robot, fn_vectorfield, fn_terminate,
@@ -244,7 +244,7 @@ def FollowVectorField(self, robot, fn_vectorfield, fn_terminate,
244244

245245
status = fn_terminate()
246246
if status == Status.CACHE_AND_CONTINUE:
247-
cached_traj = prpy.util.CopyTrajectory(qtraj)
247+
cached_traj = util.CopyTrajectory(qtraj)
248248
if status == Status.TERMINATE:
249249
break
250250

0 commit comments

Comments
 (0)