Commit eae6c040 authored by Brandon Smith's avatar Brandon Smith

Remove extraneous call

parent f088d204
...@@ -53,7 +53,6 @@ while True: ...@@ -53,7 +53,6 @@ while True:
env={"LD_LIBRARY_PATH": "/usr/local/lib"}, env={"LD_LIBRARY_PATH": "/usr/local/lib"},
stdin=subprocess.PIPE, stdout=subprocess.PIPE) stdin=subprocess.PIPE, stdout=subprocess.PIPE)
out, err = p.communicate(ssh.match.group(2)) out, err = p.communicate(ssh.match.group(2))
p.stdin.close()
p.wait() p.wait()
ssh.sendline(out.strip()) ssh.sendline(out.strip())
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment