Skip to content

Commit 8118e7d

Browse files
msgpack: improve unknown ext type error message
Part of #232
1 parent b258f3f commit 8118e7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tarantool/msgpack_ext/unpacker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ def ext_hook(code, data):
3535

3636
if code in decoders:
3737
return decoders[code](data)
38-
raise NotImplementedError("Unknown msgpack type: %d" % (code,))
38+
raise NotImplementedError("Unknown msgpack extension type code %d" % (code,))

0 commit comments

Comments
 (0)