summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-09-22 12:22:24 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-09-22 12:22:24 +0200
commit2c61fec2140da5ec9a5aee8a7d6d3f0f2d3b0897 (patch)
tree77719765b74159484906d87bdafaebe264169099 /server
parentf3567827f2bb24ed8505a2725e8e7608396feeed (diff)
Fix an inconsequential typo
Diffstat (limited to 'server')
-rw-r--r--server/socket.py2
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':