diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/socket.py b/server/socket.py index ce505e3..60f0704 100644 --- a/server/socket.py +++ b/server/socket.py @@ -18,7 +18,7 @@ _transactions_to_socket = {} # keyed by tid, used only when there is no sid ava def processIncomingPacket(receiving_socket, packet): - print('Decocoding JSON: {}'.format(packet)) + print('Decoding JSON: {}'.format(packet)) obj = json.loads(packet) req_type = obj.get('type') # private (meta) requests have the 'type' if req_type == 'connect': |