Skip to content
This repository has been archived by the owner on Jun 15, 2020. It is now read-only.

Commit

Permalink
Merge pull request #5 from nebbles/franka_control
Browse files Browse the repository at this point in the history
Final update from franka_control further updates will be on motion branch
  • Loading branch information
nebbles committed Feb 23, 2018
2 parents c8b4aca + 69313ea commit 907d840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion franka/franka_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def get_end_effector_pos(self):
print("Command being called: ", command_str)
print("Running FRANKA code...")

process = subprocess.Popen(command, stdout=subprocess.PIPE)
process = subprocess.Popen(command, cwd=self.path, stdout=subprocess.PIPE)
out, err = process.communicate() # this will block until received
decoded_output = out.decode("utf-8")

Expand Down

0 comments on commit 907d840

Please sign in to comment.