Commit 02f45c5f authored by Giuseppe Carboni's avatar Giuseppe Carboni
Browse files

Fix #720, fixed some socket.recv function

parent c4f265d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ class CommandLine:
   def query(self,cmd):
       try:
           self.sock.sendall(cmd.encode())
           msg = self.sock.recv(1024) 
           msg = self.sock.recv(1024).decode()
           print('query:received:',msg)
           return msg