diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-22 12:22:24 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-22 12:22:24 +0200 |
commit | 2c61fec2140da5ec9a5aee8a7d6d3f0f2d3b0897 (patch) | |
tree | 77719765b74159484906d87bdafaebe264169099 | |
parent | f3567827f2bb24ed8505a2725e8e7608396feeed (diff) |
Fix an inconsequential typo
-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': |