Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit e423e66

Browse files
committed
send bugfix
1 parent 1b9c7cc commit e423e66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# Funciones -------------------------------------------------------------------------------------------------------------------
1313

14-
def response(socket):
14+
def get_response(socket):
1515
print("ENTRANDO AL BUCLE DE RECIBIDO")
1616
response = ''
1717
while True:
@@ -29,7 +29,7 @@ def client_connects_to_server(sock, server_addr, port):
2929
def send(socket, message):
3030
socket.sendall(f"{message}\r\n".encode())
3131
print("MENSAJE ENVIADO, RECIBIENDO RESPUESTA")
32-
response = response(socket)
32+
response = get_response(socket)
3333
return response
3434

3535
def default_login(socket):

0 commit comments

Comments
 (0)