Commit 743f563f authored by 's avatar

merged multi-arg connect() call fix from 2.2 branch

parent 9c3c858e
......@@ -138,7 +138,7 @@ class gfclient:
import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
#print type(sock), sock
sock.connect(self.machine, self.port)
sock.connect((self.machine, self.port))
return sock
def send_action(self, action, arguments, socket):
......
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