From 6b60a059b4008e5261b8dcf1945ea63fac09eb6c Mon Sep 17 00:00:00 2001 From: louis chauvet Date: Tue, 13 Nov 2018 21:37:49 +0100 Subject: [PATCH] Fix little bug --- client/main.py | 3 ++- server/main.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/client/main.py b/client/main.py index 75915cd..0142fd6 100644 --- a/client/main.py +++ b/client/main.py @@ -3,6 +3,7 @@ import json import logging +import logging.config import os import socket @@ -57,7 +58,7 @@ error = log_server.error critical = log_server.critical #### Variables #### -HOST = '' +HOST = '127.0.0.1' PORT = 8888 BUFFER_SIZE = 16384 diff --git a/server/main.py b/server/main.py index a58fed2..dcf8ab4 100644 --- a/server/main.py +++ b/server/main.py @@ -3,6 +3,7 @@ import json import logging +import logging.config import os import socket