Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tarantool_queue/tarantool_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def basic_serialize(data):

@staticmethod
def basic_deserialize(data):
return msgpack.unpackb(data)
return msgpack.unpackb(data, encoding='utf-8')

def __init__(self, host="localhost", port=33013, space=0, schema=None):
if not(host and port):
Expand Down